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