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