debugRepaintRainbowEnabled property
bool?
get
debugRepaintRainbowEnabled
Overlay a rotating set of colors when repainting layers in checked mode.
Implementation
static bool? get debugRepaintRainbowEnabled =>
_appState?.debugRepaintRainbowEnabled;
set
debugRepaintRainbowEnabled
(bool? v)
Implementation
static set debugRepaintRainbowEnabled(bool? v) {
if (v != null) {
_appState?.debugRepaintRainbowEnabled = v;
}
}