copyWithWrapped method

DealerOrgAnalyticsDTO copyWithWrapped({
  1. Wrapped<int?>? userCount,
  2. Wrapped<int?>? technicianCount,
  3. Wrapped<int?>? deviceCount,
})

Implementation

DealerOrgAnalyticsDTO copyWithWrapped(
    {Wrapped<int?>? userCount,
    Wrapped<int?>? technicianCount,
    Wrapped<int?>? deviceCount}) {
  return DealerOrgAnalyticsDTO(
      userCount: (userCount != null ? userCount.value : this.userCount),
      technicianCount: (technicianCount != null
          ? technicianCount.value
          : this.technicianCount),
      deviceCount:
          (deviceCount != null ? deviceCount.value : this.deviceCount));
}