GutterStyle constructor

GutterStyle({
  1. TextStyle? lineNumberStyle,
  2. double? gutterWidth,
  3. IconData breakpointIcon = Icons.circle,
  4. IconData unfilledBreakpointIcon = Icons.circle_outlined,
  5. IconData foldedIcon = Icons.chevron_right_outlined,
  6. IconData unfoldedIcon = Icons.keyboard_arrow_down_outlined,
  7. Color? dividerColor,
  8. double? dividerThickness,
  9. double? breakpointSize,
  10. double? foldingIconSize,
  11. Color breakpointColor = Colors.red,
  12. Color unfilledBreakpointColor = Colors.transparent,
  13. Color foldedIconColor = Colors.grey,
  14. Color unfoldedIconColor = Colors.grey,
})

Implementation

GutterStyle({
  this.lineNumberStyle,
  this.gutterWidth,
  this.breakpointIcon = Icons.circle,
  this.unfilledBreakpointIcon = Icons.circle_outlined,
  this.foldedIcon = Icons.chevron_right_outlined,
  this.unfoldedIcon = Icons.keyboard_arrow_down_outlined,
  this.dividerColor,
  this.dividerThickness,
  this.breakpointSize,
  this.foldingIconSize,
  this.breakpointColor = Colors.red,
  this.unfilledBreakpointColor = Colors.transparent,
  this.foldedIconColor = Colors.grey,
  this.unfoldedIconColor = Colors.grey,
});