debugShowCheckedModeBanner property
Shows a little "DEBUG" banner in checked mode.
Implementation
@Deprecated('Should not be an exposed property')
bool? get debugShowCheckedModeBanner => appState?.debugShowCheckedModeBanner;
- @Deprecated('Should not be a readily available capability')
Implementation
@Deprecated('Should not be a readily available capability')
set debugShowCheckedModeBanner(bool? v) {
if (v != null) {
appState?.debugShowCheckedModeBanner = v;
}
}