SyntaxView constructor

SyntaxView({
  1. required String code,
  2. required Syntax syntax,
  3. SyntaxTheme? syntaxTheme,
  4. bool withZoom = true,
  5. bool withLinesCount = true,
  6. double fontSize = 12.0,
  7. bool expanded = false,
  8. bool selectable = true,
})

Implementation

SyntaxView(
    {required this.code,
    required this.syntax,
    this.syntaxTheme,
    this.withZoom = true,
    this.withLinesCount = true,
    this.fontSize = 12.0,
    this.expanded = false,
    this.selectable = true});