debugPaintSizeEnabled property
Each RenderBox to paint a box around its bounds.
Implementation
@Deprecated('Should not be an exposed property')
bool? get debugPaintSizeEnabled => appState?.debugPaintSizeEnabled;
set
debugPaintSizeEnabled
(bool? v)
Implementation
set debugPaintSizeEnabled(bool? v) {
if (v != null) {
appState?.debugPaintSizeEnabled = v;
}
}