debugPaintLayerBordersEnabled property
Layer paints a box around its bound.
Implementation
@Deprecated('Should not be an exposed property')
bool? get debugPaintLayerBordersEnabled =>
appState?.debugPaintLayerBordersEnabled;
set
debugPaintLayerBordersEnabled
(bool? v)
Implementation
set debugPaintLayerBordersEnabled(bool? v) {
if (v != null) {
appState?.debugPaintLayerBordersEnabled = v;
}
}