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