mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-06 19:15:47 -06:00
17 lines
379 B
Dart
17 lines
379 B
Dart
import 'package:equatable/equatable.dart';
|
|
import 'package:flutter/widgets.dart';
|
|
|
|
@immutable
|
|
class EditLabelState<T> extends Equatable {
|
|
final Map<int, T> labels;
|
|
|
|
const EditLabelState({required this.labels});
|
|
|
|
@override
|
|
List<Object> get props => [labels];
|
|
}
|
|
|
|
class EditLabelInitial<T> extends EditLabelState<T> {
|
|
const EditLabelInitial() : super(labels: const {});
|
|
}
|