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

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

Implementation

const AuthResponse.unauthenticated({
  dynamic msg,
  AuthProviders? provider,
  AuthType? type,
}) : this._(
        state: AuthState.unauthenticated,
        msg: msg,
        provider: provider,
        type: type,
      );