copyWithWrapped method
PartnerCustomerCreateResponse
copyWithWrapped({
- Wrapped<
PartnerEndCustomerWithSecrets?> ? endCustomer, - 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));
}