DocViewerView constructor

const DocViewerView({
  1. Key? key,
  2. required String filePath,
  3. DocType? docType,
  4. bool? darkMode,
  5. WidgetBuilder? unsupportedBuilder,
  6. WidgetBuilder? missingFileBuilder,
})

Implementation

const DocViewerView({
  super.key,
  required this.filePath,
  this.docType,
  this.darkMode,
  this.unsupportedBuilder,
  this.missingFileBuilder,
});