TencentLoginResp constructor

const TencentLoginResp({
  1. required int ret,
  2. String? msg,
  3. String? openid,
  4. String? accessToken,
  5. int? expiresIn,
  6. int? createAt,
})

Implementation

const TencentLoginResp({
  required super.ret,
  super.msg,
  this.openid,
  this.accessToken,
  this.expiresIn,
  this.createAt,
});