copyWith method

ChargebackMarkingResponseModel copyWith({
  1. String? code,
  2. String? status,
})

Implementation

ChargebackMarkingResponseModel copyWith({
  String? code,
  String? status,
}) {
  return ChargebackMarkingResponseModel(
    orderCode: code ?? this.orderCode,
    status: status ?? this.status,
  );
}