debugPaintLayerBordersEnabled property
bool?
get
debugPaintLayerBordersEnabled
Layer paints a box around its bound.
Implementation
static bool? get debugPaintLayerBordersEnabled =>
_appState?.debugPaintLayerBordersEnabled;
set
debugPaintLayerBordersEnabled
(bool? v)
Implementation
static set debugPaintLayerBordersEnabled(bool? v) {
if (v != null) {
_appState?.debugPaintLayerBordersEnabled = v;
}
}