StoreProvider<_S> constructor
Implementation
StoreProvider({
Key? key,
required Create<Store<_S>> create,
Widget? child,
bool? lazy,
}): this._(
key: key,
create: create,
dispose: (_, store) => store.close(),
child: child,
lazy: lazy ?? false,
);