void copyWith({ String? nameSelected, int? id, int? index, }) { this.name = nameSelected ?? this.name; this.id = id ?? this.id; this.index = index ?? this.index; }