debugShowCheckedModeBanner property
Implementation
@Deprecated('Should not be an exposed property')
bool get debugShowCheckedModeBanner =>
_debugShowCheckedModeBanner ?? onDebugShowCheckedModeBanner() ?? false;
- @Deprecated('Should not be a readily available capability')
inherited
Implementation
@Deprecated('Should not be a readily available capability')
set debugShowCheckedModeBanner(bool? debug) {
if (debug != null) {
_debugShowCheckedModeBanner = debug;
}
}