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