copyWithWrapped method

TransferOriginatorCreateResponse copyWithWrapped({
  1. Wrapped<String>? originatorClientId,
  2. Wrapped<String>? companyName,
  3. Wrapped<String>? requestId,
})

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));
}