Files
paperless-mobile/lib/features/edit_label/cubit/edit_label_state.dart

11 lines
210 B
Dart

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