toSignal method

MapSignal<K, V> toSignal({
  1. String? debugLabel,
  2. bool autoDispose = false,
})

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,
  );
}