build method

Bloc<T> build({
  1. Object? arguments,
  2. Object? pageScope,
})

Build the Bloc

Implementation

Bloc<T> build({Object? arguments, Object? pageScope}) => Bloc<T>(
      initialState(arguments),
      _handlersByEvent,
      _syncHandlersByEvent,
      pageScope: pageScope,
    );