copyWithWrapped method
Implementation
TransferOriginatorCreateResponse copyWithWrapped(
{Wrapped<String>? originatorClientId,
Wrapped<String>? companyName,
Wrapped<String>? requestId}) {
return TransferOriginatorCreateResponse(
originatorClientId: (originatorClientId != null
? originatorClientId.value
: this.originatorClientId),
companyName:
(companyName != null ? companyName.value : this.companyName),
requestId: (requestId != null ? requestId.value : this.requestId));
}