part of 'edit_label_cubit.dart'; class EditLabelState extends Equatable { final Map labels; const EditLabelState({this.labels = const {}}); @override List get props => [labels]; }