debugPaintSizeEnabled property
bool?
get
debugPaintSizeEnabled
Each RenderBox to paint a box around its bounds.
Implementation
bool? get debugPaintSizeEnabled => appState?.debugPaintSizeEnabled;
set
debugPaintSizeEnabled
(bool? v)
Implementation
set debugPaintSizeEnabled(bool? v) {
if (v != null) {
appState?.debugPaintSizeEnabled = v;
}
}