inProviders method
Implementation
static Widget inProviders({Key key, Auth auth, Dice dice, Store store}) => MultiProvider(
key: key,
providers: [
Provider(create: (_) => const AppRouter()),
Provider(create: (_) => auth ?? const Auth()),
Provider(create: (_) => store ?? Store(Firestore.instance)),
Provider(create: (_) => dice ?? const Dice()),
],
child: const HumanLifeGameApp._(),
);