MapObs<K, V> constructor

MapObs<K, V>(
  1. Map<K, V> value, {
  2. bool autoNotify = true,
  3. ValueChanged<Map<K, V>>? onChanged,
  4. bool? immediate,
  5. String? cacheKey,
  6. ElSerialize? serialize,
  7. ElStorage? storage,
})

Implementation

MapObs(
  super.value, {
  super.autoNotify,
  super.onChanged,
  super.immediate,
  super.cacheKey,
  super.serialize,
  super.storage,
});