mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-11 10:08:02 -06:00
More work on inbox, refactorings (bloc separation of concerns), fixed saved views wrong sort order
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
part of 'document_details_cubit.dart';
|
||||
|
||||
class DocumentDetailsState with EquatableMixin {
|
||||
final DocumentModel? document;
|
||||
|
||||
const DocumentDetailsState({
|
||||
this.document,
|
||||
});
|
||||
|
||||
@override
|
||||
List<Object?> get props => [document];
|
||||
}
|
||||
Reference in New Issue
Block a user