FetchCubit<F> constructor
FetchCubit<F> ({})
Implementation
FetchCubit({
this.timeoutMessage,
this.unexpectedExceptionMessage,
Stream<F>? dataUpdatedStream,
}) : super(FetchInitial()) {
_streamSubscription = dataUpdatedStream?.listen(_onDataUpdated);
}