GenericPdfController constructor

GenericPdfController({
  1. required String title,
  2. required String creator,
  3. required PdfPageFormat format,
  4. required List<String> columns,
  5. required List<List<String?>> rows,
  6. ThemeData? themeData,
})

Implementation

GenericPdfController({
  required this.title,
  required this.creator,
  required this.format,
  required this.columns,
  required this.rows,
  this.themeData,
});