GridSettings constructor

GridSettings({
  1. bool isEnabled = false,
  2. double? cellSize,
  3. Color? color,
})

Implementation

GridSettings({this.isEnabled = false, double? cellSize, Color? color})
  : cellSize = cellSize ?? SceneDefaults.gridSizes.first,
    color = color ?? SceneDefaults.gridColor;