AuthResponse<T extends Auth<AuthKeys> >.unauthorized constructor
const
AuthResponse<T extends Auth<AuthKeys> >.unauthorized ({})
Implementation
const AuthResponse.unauthorized({
dynamic msg,
Provider? provider,
AuthType? type,
}) : this._(
state: AuthStatus.unauthorized,
error: msg,
provider: provider,
type: type,
);