debugShowMaterialGrid property

bool debugShowMaterialGrid
inherited

Implementation

bool get debugShowMaterialGrid =>
    _debugShowMaterialGrid ?? onDebugShowMaterialGrid() ?? false;
void debugShowMaterialGrid=(bool? debug)
inherited

Implementation

set debugShowMaterialGrid(bool? debug) {
  if (debug != null) {
    _debugShowMaterialGrid = debug;
  }
}