showDebugModeBanner function

bool showDebugModeBanner(
  1. List<AppContext> appContexts
)

Decides whether to show the debug mode banner based on the environment that the app is running.

The banner is only shown when the app is running in test mode

Implementation

bool showDebugModeBanner(List<AppContext> appContexts) =>
    appContexts.contains(AppContext.AppTest);