copyWith method
Implementation
TransferOriginatorCreateResponse copyWith(
{String? originatorClientId, String? companyName, String? requestId}) {
return TransferOriginatorCreateResponse(
originatorClientId: originatorClientId ?? this.originatorClientId,
companyName: companyName ?? this.companyName,
requestId: requestId ?? this.requestId);
}