SyntaxHighlighterStyle constructor

SyntaxHighlighterStyle({
  1. TextStyle? baseStyle,
  2. TextStyle? numberStyle,
  3. TextStyle? commentStyle,
  4. TextStyle? keywordStyle,
  5. TextStyle? stringStyle,
  6. TextStyle? punctuationStyle,
  7. TextStyle? classStyle,
  8. TextStyle? constantStyle,
})

Implementation

SyntaxHighlighterStyle(
    {this.baseStyle,
    this.numberStyle,
    this.commentStyle,
    this.keywordStyle,
    this.stringStyle,
    this.punctuationStyle,
    this.classStyle,
    this.constantStyle});