copyWith method
Implementation
TransferRefundCreateRequest copyWith(
{String? clientId,
String? secret,
String? transferId,
String? amount,
String? idempotencyKey}) {
return TransferRefundCreateRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
transferId: transferId ?? this.transferId,
amount: amount ?? this.amount,
idempotencyKey: idempotencyKey ?? this.idempotencyKey);
}