toSignal method
Convert an existing list to MapSignal
Implementation
MapSignal<K, V> toSignal({
String? debugLabel,
bool autoDispose = false,
}) {
return MapSignal<K, V>(
this,
debugLabel: debugLabel,
autoDispose: autoDispose,
);
}