copyWithWrapped method

PartnerEndCustomer copyWithWrapped({
  1. Wrapped<String?>? clientId,
  2. Wrapped<String?>? companyName,
  3. Wrapped<PartnerEndCustomerStatus?>? status,
})

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