AuthResp constructor

const AuthResp({
  1. required int errorCode,
  2. String? errorMessage,
  3. String? userId,
  4. String? accessToken,
  5. String? refreshToken,
  6. int? expiresIn,
})

Implementation

const AuthResp({
  required super.errorCode,
  super.errorMessage,
  this.userId,
  this.accessToken,
  this.refreshToken,
  this.expiresIn,
});