debugShowCheckedModeBanner property

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

Shows a little "DEBUG" banner in checked mode.

Implementation

@Deprecated('Should not be an exposed property')
bool? get debugShowCheckedModeBanner => appState?.debugShowCheckedModeBanner;
  1. @Deprecated('Should not be a readily available capability')
set debugShowCheckedModeBanner (bool? v)

Implementation

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