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