toRxList method
RxList<T>
toRxList([
- List<
T> initial = const [], - void onError(
- Object error,
- StackTrace stackTrace
- void onDone()?,
- bool? cancelOnError,
Implementation
RxList<T> toRxList([
List<T> initial = const [],
void Function(Object error, StackTrace stackTrace)? onError,
void Function()? onDone,
bool? cancelOnError,
]) =>
RxList<T>.fromStream(
this,
initial: initial,
onError: onError,
onDone: onDone,
cancelOnError: cancelOnError,
);