LxMap<K, V> constructor

LxMap<K, V>([
  1. Map<K, V>? initial,
  2. String? name,
  3. bool isSensitive = false
])

Creates a reactive map.

Backed by initial if provided, otherwise an empty map.

Implementation

LxMap([Map<K, V>? initial, String? name, bool isSensitive = false])
    : super(initial ?? <K, V>{}, name: name, isSensitive: isSensitive);