debugShowMaterialGrid property

  1. @Deprecated('Should not be an exposed property')
bool get debugShowMaterialGrid
inherited

Implementation

@Deprecated('Should not be an exposed property')
bool get debugShowMaterialGrid =>
    _debugShowMaterialGrid ?? onDebugShowMaterialGrid() ?? false;
  1. @Deprecated('Should not be a readily available capability')
set debugShowMaterialGrid (bool? debug)
inherited

Implementation

@Deprecated('Should not be a readily available capability')
set debugShowMaterialGrid(bool? debug) {
  if (debug != null) {
    _debugShowMaterialGrid = debug;
  }
}