debugPaintSizeEnabled property

bool? debugPaintSizeEnabled

Each RenderBox to paint a box around its bounds.

Implementation

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

Implementation

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