CodeTheme constructor

const CodeTheme({
  1. Color? baseColor,
  2. Color? numberColor,
  3. Color? commentColor,
  4. Color? keywordColor,
  5. Color? stringColor,
  6. Color? punctuationColor,
  7. Color? classColor,
  8. Color? constantColor,
})

Implementation

const CodeTheme({
  this.baseColor,
  this.numberColor,
  this.commentColor,
  this.keywordColor,
  this.stringColor,
  this.punctuationColor,
  this.classColor,
  this.constantColor,
});