copyWithWrapped method
Implementation
PartnerEndCustomer copyWithWrapped(
{Wrapped<String?>? clientId,
Wrapped<String?>? companyName,
Wrapped<enums.PartnerEndCustomerStatus?>? status}) {
return PartnerEndCustomer(
clientId: (clientId != null ? clientId.value : this.clientId),
companyName:
(companyName != null ? companyName.value : this.companyName),
status: (status != null ? status.value : this.status));
}