WechatLaunchMiniProgramResp constructor

const WechatLaunchMiniProgramResp({
  1. required int errorCode,
  2. String? errorMsg,
  3. String? extMsg,
})

Implementation

const WechatLaunchMiniProgramResp({
  required int errorCode,
  String? errorMsg,
  this.extMsg,
}) : super(
        errorCode: errorCode,
        errorMsg: errorMsg,
      );