debugShowMaterialGrid property
bool?
get
debugShowMaterialGrid
If true, it paints a grid overlay on Material apps.
Implementation
bool? get debugShowMaterialGrid => appState?.debugShowMaterialGrid;
set
debugShowMaterialGrid
(bool? v)
Implementation
set debugShowMaterialGrid(bool? v) {
if (v != null) {
appState?.debugShowMaterialGrid = v;
}
}