ObservableMap<K, V>.of constructor

ObservableMap<K, V>.of(
  1. Map<K, V> other, {
  2. ReactiveContext? context,
  3. String? name,
})

Implementation

ObservableMap.of(Map<K, V> other, {ReactiveContext? context, String? name})
    : _context = context ?? mainContext,
      _atom = _observableMapAtom<K, V>(context, name),
      _map = Map.of(other);