DeskDocumentListView constructor

const DeskDocumentListView({
  1. Key? key,
  2. required DocumentType<Serializable> selectedDocumentType,
  3. IconData? icon,
  4. String? filter,
  5. void onOpenDocument(
    1. String documentId
    )?,
  6. void onDeleteDocument(
    1. String documentId
    )?,
})

Implementation

const DeskDocumentListView({
  super.key,
  required this.selectedDocumentType,
  this.icon,
  this.filter,
  this.onOpenDocument,
  this.onDeleteDocument,
});