addStream abstract method

  1. @override
Future<void> addStream(
  1. Stream<Event> eventStream
)
override

Pass all eventStream events to the Bloc If close has already been called, any subsequent calls to addStream will be ignored and will not result in any subsequent state changes.

Implementation

@override
Future<void> addStream(Stream<Event> eventStream);