copyWith method
Implementation
DealerOrgAnalyticsDTO copyWith(
{int? userCount, int? technicianCount, int? deviceCount}) {
return DealerOrgAnalyticsDTO(
userCount: userCount ?? this.userCount,
technicianCount: technicianCount ?? this.technicianCount,
deviceCount: deviceCount ?? this.deviceCount);
}