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