debugPaintBaselinesEnabled property

  1. @Deprecated('Should not be an exposed property')
bool? get debugPaintBaselinesEnabled

RenderBox paints a line at its baselines.

Implementation

@Deprecated('Should not be an exposed property')
bool? get debugPaintBaselinesEnabled => appState?.debugPaintBaselinesEnabled;
set debugPaintBaselinesEnabled (bool? v)

Implementation

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