AuthResponse<T extends Auth<AuthKeys>>.unauthorized constructor

const AuthResponse<T extends Auth<AuthKeys>>.unauthorized({
  1. dynamic msg,
  2. Provider? provider,
  3. AuthType? type,
})

Implementation

const AuthResponse.unauthorized({
  dynamic msg,
  Provider? provider,
  AuthType? type,
}) : this._(
        state: AuthStatus.unauthorized,
        error: msg,
        provider: provider,
        type: type,
      );