toSignal method

QueueSignal<T> toSignal({
  1. String? debugLabel,
  2. bool autoDispose = false,
})

Convert an existing list to QueueSignal

Implementation

QueueSignal<T> toSignal({
  String? debugLabel,
  bool autoDispose = false,
}) {
  return QueueSignal(
    this,
    debugLabel: debugLabel,
    autoDispose: autoDispose,
  );
}