AuthenticationBasicProvider constructor

const AuthenticationBasicProvider({
  1. Key? key,
  2. required Widget child,
  3. AuthenticationBasicBloc? authBloc,
  4. bool autoGetSession = true,
})

Implementation

const AuthenticationBasicProvider({
  Key? key,
  required this.child,
  this.authBloc,
  this.autoGetSession = true,
}) : super(key: key);