WechatResp constructor

const WechatResp({
  1. required int errorCode,
  2. String? errorMsg,
})

Implementation

const WechatResp({
  required this.errorCode,
  this.errorMsg,
});