AuthenticationBloc constructor

AuthenticationBloc(
  1. {@required AuthRepository authRepository}
)

Implementation

AuthenticationBloc({@required AuthRepository authRepository})
    : assert(authRepository != null),
      _authRepository = authRepository,
      super(AuthenticationInit());