copyWith method

PaywayPartnerCheckMerchantResponseStatus copyWith({
  1. String? code,
  2. String? message,
  3. String? tran_id,
})

Implementation

PaywayPartnerCheckMerchantResponseStatus copyWith({
  String? code,
  String? message,
  String? tran_id,
}) {
  return PaywayPartnerCheckMerchantResponseStatus(
    code: code ?? this.code,
    message: message ?? this.message,
    tran_id: tran_id ?? this.tran_id,
  );
}