SyntaxTheme constructor

SyntaxTheme({
  1. TextStyle? baseStyle,
  2. TextStyle? numberStyle,
  3. TextStyle? commentStyle,
  4. TextStyle? keywordStyle,
  5. TextStyle? stringStyle,
  6. TextStyle? punctuationStyle,
  7. TextStyle? classStyle,
  8. TextStyle? constantStyle,
  9. Color? linesCountColor,
  10. Color? backgroundColor,
  11. Color? zoomIconColor,
})

Implementation

SyntaxTheme({
  this.baseStyle,
  this.numberStyle,
  this.commentStyle,
  this.keywordStyle,
  this.stringStyle,
  this.punctuationStyle,
  this.classStyle,
  this.constantStyle,
  this.linesCountColor,
  this.backgroundColor,
  this.zoomIconColor,
});