copyWith method

CheckStatusRequest copyWith({
  1. String? mid,
  2. List<String>? merchantTxnRefNo,
  3. String? hashMac,
})

Implementation

CheckStatusRequest copyWith({String? mid, List<String>? merchantTxnRefNo, String? hashMac}) =>
    CheckStatusRequest(mid: mid ?? this.mid, merchantTxnRefNo: merchantTxnRefNo ?? this.merchantTxnRefNo, hashMac: hashMac ?? this.hashMac);