debugPaintSizeEnabled property

bool? debugPaintSizeEnabled

Each RenderBox to paint a box around its bounds.

Implementation

bool? get debugPaintSizeEnabled => appState?.debugPaintSizeEnabled;
void debugPaintSizeEnabled=(bool? v)

Implementation

set debugPaintSizeEnabled(bool? v) {
  if (v != null) {
    appState?.debugPaintSizeEnabled = v;
  }
}