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

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

Implementation

const AuthResponse.unauthenticated({String? msg, AuthType? type})
    : this._(state: AuthStatus.unauthenticated, msg: msg, type: type);