copyWith method
Implementation
DashboardCriteriaChartModel copyWith(
{String? name, String? type, String? criteriaId}) {
return DashboardCriteriaChartModel(
name: name ?? this.name,
type: type ?? this.type,
criteriaId: criteriaId ?? this.criteriaId);
}