UserBloc<T extends TruesightAppUser> constructor

UserBloc<T extends TruesightAppUser>()

Implementation

UserBloc() : super(UserInitial<T>()) {
  on<UserSimpleLoginEvent>(_onSimpleLogin);
  on<UserLoadingEvent>(_onLoading);
  on<UserLoginSuccessEvent<T>>(_onLoginSuccess);
  on<UserLoginErrorEvent>(_onLoginError);
  on<UserLoggedOutEvent>(_onUserLoggedOut);
  on<GoogleLoggedInEvent>(_onGoogleLoggedIn);
  on<AppleLoggedInEvent>(_onAppleLoggedIn);
  on<UserOpenedAppEvent>(_onUserOpenApp);
  on<BiometricLoggedInEvent>(_onBiometricLogin);
  on<UserTenantSelectedEvent>(_onUserTenantSelected);
  on<UserLoadedTenantsEvent>(_onUserLoadedTenants);
}