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

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

Implementation

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