copyWithWrapped method
Implementation
DashboardDataCollectionChartModel copyWithWrapped(
{Wrapped<String>? name,
Wrapped<String?>? type,
Wrapped<String>? dataCollectionId}) {
return DashboardDataCollectionChartModel(
name: (name != null ? name.value : this.name),
type: (type != null ? type.value : this.type),
dataCollectionId: (dataCollectionId != null
? dataCollectionId.value
: this.dataCollectionId));
}