createProvider method
Generates the BlocProvider to be placed into the widget tree.
Implementation
BlocProvider<T> createProvider(Widget child) {
return BlocProvider<T>.fromBuilder(builder: this, child: child);
}
Generates the BlocProvider to be placed into the widget tree.
BlocProvider<T> createProvider(Widget child) {
return BlocProvider<T>.fromBuilder(builder: this, child: child);
}