copyWith method
QuickbooksCreditCardPayment
copyWith({
- QuickbooksCreditChargeResponse? creditChargeResponse,
- QuickbooksCreditChargeInfo? creditChargeInfo,
Implementation
QuickbooksCreditCardPayment copyWith({
QuickbooksCreditChargeResponse? creditChargeResponse,
QuickbooksCreditChargeInfo? creditChargeInfo,
}) {
return QuickbooksCreditCardPayment(
creditChargeResponse: creditChargeResponse ?? this.creditChargeResponse,
creditChargeInfo: creditChargeInfo ?? this.creditChargeInfo,
);
}