DartDeskConfig constructor

const DartDeskConfig({
  1. required List<DocumentType<Serializable>> documentTypes,
  2. required List<DocumentTypeDecoration> documentTypeDecorations,
  3. String title = 'Dart Desk',
  4. String? subtitle,
  5. IconData? icon,
})

Implementation

const DartDeskConfig({
  required this.documentTypes,
  required this.documentTypeDecorations,
  this.title = 'Dart Desk',
  this.subtitle,
  this.icon,
});