WechatPayResp constructor

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

Implementation

const WechatPayResp({
  required super.errorCode,
  super.errorMsg,
  this.returnKey,
});