mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-08 12:07:54 -06:00
11 lines
210 B
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];
|
|
}
|