ListenableMap<K, V>.from constructor

ListenableMap<K, V>.from(
  1. Map<K, V> map
)

This is a ChangeNotifier class that can be handled as a map.

When the contents of the map change, you will be notified of the change.

Implementation

ListenableMap.from(Map<K, V> map) : super(Map<K, V>.from(map));