LoginBloc constructor

LoginBloc({
  1. bool logErrors = true,
})

Implementation

LoginBloc({this.logErrors = true}) : super(LoginState.normal) {
  on<LoginAppleEvent>(loginWithApple);
  on<LoginGoogleEvent>(loginWithGoogle);
}