DocTheme constructor

const DocTheme({
  1. PdfColor accentColor = const PdfColor.fromInt(0xFF00E5CC),
  2. PdfColor accentDark = const PdfColor.fromInt(0xFF009E8E),
  3. String brandName = 'Open Neom',
  4. String brandVersion = 'v1.0',
  5. String footerLeft = 'Open Neom',
  6. String footerCenter = 'Generated with neom_docs — Open Neom',
})

Implementation

const DocTheme({
  this.accentColor = const PdfColor.fromInt(0xFF00E5CC),
  this.accentDark = const PdfColor.fromInt(0xFF009E8E),
  this.brandName = 'Open Neom',
  this.brandVersion = 'v1.0',
  this.footerLeft = 'Open Neom',
  this.footerCenter = 'Generated with neom_docs — Open Neom',
});