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