debugShowMaterialGrid property
If true, it paints a grid overlay on Material apps.
Implementation
@Deprecated('Should not be an exposed property')
bool? get debugShowMaterialGrid => appState?.debugShowMaterialGrid;
Implementation
@Deprecated('Should not be a readily available capability')
set debugShowMaterialGrid(bool? v) {
if (v != null) {
appState?.debugShowMaterialGrid = v;
}
}