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

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

Implementation

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