mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-06 23:15:43 -06:00
11 lines
296 B
Dart
11 lines
296 B
Dart
part of 'document_details_cubit.dart';
|
|
|
|
@freezed
|
|
class DocumentDetailsState with _$DocumentDetailsState {
|
|
const factory DocumentDetailsState({
|
|
@Default(LoadingStatus.initial) LoadingStatus status,
|
|
DocumentModel? document,
|
|
DocumentMetaData? metaData,
|
|
}) = _DocumentDetailsState;
|
|
}
|