AccountBasicProvider constructor
const
AccountBasicProvider({
- Key? key,
- AuthenticationBasicBloc? authenticationBasicBloc,
- AccountBasicBloc? accountBasicBloc,
- required Widget child,
Implementation
const AccountBasicProvider({
Key? key,
this.authenticationBasicBloc,
this.accountBasicBloc,
required this.child,
}) : assert(
authenticationBasicBloc == null || accountBasicBloc == null,
"You can just set either 'authenticationBasicBloc' or 'accountBasicBloc' , not both.",
),
super(key: key);