GridTheme constructor
const
GridTheme({})
Creates a grid theme with the specified visual properties.
Parameters:
color: Color of the grid lines or dotssize: Spacing between grid lines in pixelsthickness: Width of grid lines (or radius for dots)style: The grid pattern style to render
Implementation
const GridTheme({
required this.color,
required this.size,
required this.thickness,
required this.style,
});