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