part of 'documents_cubit.dart'; class DocumentsState extends DocumentPagingState { final List selection; final ViewType viewType; const DocumentsState({ this.selection = const [], this.viewType = ViewType.list, super.value = const [], super.filter = const DocumentFilter(), super.hasLoaded = false, super.isLoading = false, }); List get selectedIds => selection.map((e) => e.id).toList(); DocumentsState copyWith({ bool? hasLoaded, bool? isLoading, List>? value, DocumentFilter? filter, List? selection, ViewType? viewType, }) { return DocumentsState( hasLoaded: hasLoaded ?? this.hasLoaded, isLoading: isLoading ?? this.isLoading, value: value ?? this.value, filter: filter ?? this.filter, selection: selection ?? this.selection, viewType: viewType ?? this.viewType, ); } @override List get props => [ selection, viewType, super.filter, super.hasLoaded, super.isLoading, super.value, ]; @override DocumentsState copyWithPaged({ bool? hasLoaded, bool? isLoading, List>? value, DocumentFilter? filter, }) { return copyWith( filter: filter, hasLoaded: hasLoaded, isLoading: isLoading, value: value, ); } }