import 'package:paperless_api/paperless_api.dart'; class LinkedDocumentsState { final bool isLoaded; final PagedSearchResult? documents; final DocumentFilter filter; LinkedDocumentsState({ required this.filter, this.isLoaded = false, this.documents, }); }