WechatSubscribeMsgResp constructor

const WechatSubscribeMsgResp({
  1. required int errorCode,
  2. String? errorMsg,
  3. String? openId,
  4. String? templateId,
  5. int? scene,
  6. String? action,
  7. String? reserved,
})

Implementation

const WechatSubscribeMsgResp({
  required super.errorCode,
  super.errorMsg,
  this.openId,
  this.templateId,
  this.scene,
  this.action,
  this.reserved,
});