copyWith method
Implementation
ContentState copyWith({int? id, String? name, String? color}) {
return ContentState(
id: id ?? this.id,
name: name ?? this.name,
color: color ?? this.color,
);
}
ContentState copyWith({int? id, String? name, String? color}) {
return ContentState(
id: id ?? this.id,
name: name ?? this.name,
color: color ?? this.color,
);
}