SignalMap<K, V>.of constructor

SignalMap<K, V>.of(
  1. Map<K, V> other
)

see dart core documentation

Implementation

factory SignalMap.of(Map<K, V> other) =>
    SignalMap(LinkedHashMap<K, V>.of(other));