ConnectRefreshTokenModel constructor

ConnectRefreshTokenModel({
  1. String? code,
  2. String? message,
  3. bool? isSuccess,
  4. String? detail,
  5. String? accessToken,
  6. int? expire,
  7. String? refreshToken,
})

Implementation

ConnectRefreshTokenModel({
  this.code,
  this.message,
  this.isSuccess,
  this.detail,
  this.accessToken,
  this.expire,
  this.refreshToken,
});