RxObsMap<K, V> constructor

RxObsMap<K, V>([
  1. Map<K, V> initial = const {}
])

Creates a new LinkedHashMap with the provided initial keys and values.

Implementation

RxObsMap([Map<K, V> initial = const {}])
  : _value = ObsMap<K, V>.from(initial);