authType property

AuthType get authType

The type of authentication being used (password or provider).

Implementation

AuthType get authType => _authType;
set authType (AuthType authType)

Implementation

set authType(AuthType authType) {
  _authType = authType;
  notifyListeners();
}