debugPaintLayerBordersEnabled property

bool? debugPaintLayerBordersEnabled

Layer paints a box around its bound.

Implementation

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

Implementation

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