MapNotifier<T, V> constructor
MapNotifier<T, V> ({})
Implementation
MapNotifier(
{Map<T, V>? data,
bool notifyIfEqual = false,
bool Function(Map<T, V> x, Map<T, V> y)? customEquality})
: _notifyIfEqual = notifyIfEqual,
customEquality = customEquality ??
((Map<T, V> map1, Map<T, V> map2) {
return isEqual(map1, map2);
}),
super(data ?? {});