debugRepaintRainbowEnabled property
Overlay a rotating set of colors when repainting layers in checked mode.
Implementation
@Deprecated('Should not be an exposed property')
bool? get debugRepaintRainbowEnabled => appState?.debugRepaintRainbowEnabled;
set
debugRepaintRainbowEnabled
(bool? v)
Implementation
set debugRepaintRainbowEnabled(bool? v) {
if (v != null) {
appState?.debugRepaintRainbowEnabled = v;
}
}