RxMap<K, V> constructor

RxMap<K, V>([
  1. Map<K, V>? map
])

Implementation

RxMap([Map<K, V>? map]) {
  if (map != null) {
    _map = map;
  } else {
    _map = {};
  }
}