mapSignal<K, V> function
Implementation
MapSignal<K, V> mapSignal<K, V>(
Map<K, V> map, {
String? debugLabel,
bool autoDispose = false,
}) {
return MapSignal<K, V>(
map,
debugLabel: debugLabel,
autoDispose: autoDispose,
);
}