showGrid property

bool get showGrid

Whether to draw background grid lines.

Implementation

bool get showGrid => _showGrid;
set showGrid (bool value)

Implementation

set showGrid(bool value) {
  if (_showGrid == value) return;
  _showGrid = value;
  notifyListeners();
}