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

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

Implementation

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