WechatSubscribeMsgResp constructor

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

Implementation

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