copyWith method
Implementation
TransferRefundGetRequest copyWith(
{String? clientId, String? secret, String? refundId}) {
return TransferRefundGetRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
refundId: refundId ?? this.refundId);
}