copyWith method

DealerOrgAnalyticsDTO copyWith({
  1. int? userCount,
  2. int? technicianCount,
  3. int? deviceCount,
})

Implementation

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