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