GutterStyle constructor
GutterStyle({
- TextStyle? lineNumberStyle,
- Color? backgroundColor,
- double? gutterWidth,
- IconData foldedIcon = Icons.chevron_right_outlined,
- IconData unfoldedIcon = Icons.keyboard_arrow_down_outlined,
- double? foldingIconSize,
- Color? foldedIconColor,
- Color? unfoldedIconColor,
- Color? activeLineNumberColor,
- Color? inactiveLineNumberColor,
- Color errorLineNumberColor = const Color(0xFFE53935),
- Color warningLineNumberColor = const Color(0xFFFFA726),
- 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,
});