AuthValidateResponse constructor

AuthValidateResponse({
  1. int? status,
  2. String? message,
  3. String? clientId,
  4. String? login,
  5. List<String>? scopes,
  6. String? userId,
  7. int? expiresIn,
})

Implementation

AuthValidateResponse({
  int? status,
  String? message,
  this.clientId,
  this.login,
  this.scopes,
  this.userId,
  this.expiresIn,
}): super(
  message: message,
  status: status
);