copyWithWrapped method

PartnerCustomerCreateResponse copyWithWrapped({
  1. Wrapped<PartnerEndCustomerWithSecrets?>? endCustomer,
  2. Wrapped<String?>? requestId,
})

Implementation

PartnerCustomerCreateResponse copyWithWrapped(
    {Wrapped<PartnerEndCustomerWithSecrets?>? endCustomer,
    Wrapped<String?>? requestId}) {
  return PartnerCustomerCreateResponse(
      endCustomer:
          (endCustomer != null ? endCustomer.value : this.endCustomer),
      requestId: (requestId != null ? requestId.value : this.requestId));
}