gridStyle property
The grid style to render on the canvas background.
Use constants from GridStyles class or create a custom GridStyle. Use GridStyles.none for no grid.
Default is GridStyles.dots.
Example:
// Using GridStyles constants
gridStyle: GridStyles.lines,
gridStyle: GridStyles.hierarchical,
// Custom grid style
gridStyle: MyCustomGridStyle(),
// No grid
gridStyle: GridStyles.none,
Implementation
final GridStyle gridStyle;