BaseResp constructor

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

Implementation

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