copyWith method
PartnerCustomerCreateResponse
copyWith({
- PartnerEndCustomerWithSecrets? endCustomer,
- String? requestId,
Implementation
PartnerCustomerCreateResponse copyWith(
{PartnerEndCustomerWithSecrets? endCustomer, String? requestId}) {
return PartnerCustomerCreateResponse(
endCustomer: endCustomer ?? this.endCustomer,
requestId: requestId ?? this.requestId);
}