DeskDocumentTypeSidebar constructor

const DeskDocumentTypeSidebar({
  1. Key? key,
  2. required List<DocumentTypeDecoration> documentTypeDecorations,
  3. Widget? header,
  4. Widget? footer,
})

Implementation

const DeskDocumentTypeSidebar({
  super.key,
  required this.documentTypeDecorations,
  this.header,
  this.footer,
});