BlocNotifier<T extends Bloc> constructor

BlocNotifier<T extends Bloc>(
  1. T bloc
)

maps the Bloc to the ChangeNotifier widget from Provider

Implementation

BlocNotifier(this.bloc) {
  bloc.blocUpdated.add(notifyListeners);
}