AuthResp constructor

const AuthResp({
  1. required int errorCode,
  2. String? errorMsg,
  3. String? code,
  4. String? state,
  5. String? lang,
  6. String? country,
})

Implementation

const AuthResp({
  required int errorCode,
  String? errorMsg,
  this.code,
  this.state,
  this.lang,
  this.country,
}) : super(errorCode: errorCode, errorMsg: errorMsg);