createProvider method

BlocProvider<T> createProvider(
  1. Widget child
)

Generates the BlocProvider to be placed into the widget tree.

Implementation

BlocProvider<T> createProvider(Widget child) {
  return BlocProvider<T>.fromBuilder(builder: this, child: child);
}