debugShowCheckedModeBanner property

  1. @Deprecated('Should not be an exposed property')
bool get debugShowCheckedModeBanner
inherited

Implementation

@Deprecated('Should not be an exposed property')
bool get debugShowCheckedModeBanner =>
    _debugShowCheckedModeBanner ?? onDebugShowCheckedModeBanner() ?? false;
  1. @Deprecated('Should not be a readily available capability')
set debugShowCheckedModeBanner (bool? debug)
inherited

Implementation

@Deprecated('Should not be a readily available capability')
set debugShowCheckedModeBanner(bool? debug) {
  if (debug != null) {
    _debugShowCheckedModeBanner = debug;
  }
}