GutterStyle constructor

GutterStyle({
  1. TextStyle? lineNumberStyle,
  2. Color? backgroundColor,
  3. double? gutterWidth,
  4. IconData foldedIcon = Icons.chevron_right_outlined,
  5. IconData unfoldedIcon = Icons.keyboard_arrow_down_outlined,
  6. double? foldingIconSize,
  7. Color? foldedIconColor,
  8. Color? unfoldedIconColor,
  9. Color? activeLineNumberColor,
  10. Color? inactiveLineNumberColor,
  11. Color errorLineNumberColor = const Color(0xFFE53935),
  12. Color warningLineNumberColor = const Color(0xFFFFA726),
  13. Color? foldedLineHighlightColor,
})

Implementation

GutterStyle({
  this.lineNumberStyle,
  this.backgroundColor,
  this.gutterWidth,
  this.foldedIcon = Icons.chevron_right_outlined,
  this.unfoldedIcon = Icons.keyboard_arrow_down_outlined,
  this.foldingIconSize,
  this.foldedIconColor,
  this.unfoldedIconColor,
  this.activeLineNumberColor,
  this.inactiveLineNumberColor,
  this.errorLineNumberColor = const Color(0xFFE53935),
  this.warningLineNumberColor = const Color(0xFFFFA726),
  this.foldedLineHighlightColor,
});