mode constant
String
const mode
Implementation
static const String mode = isDebug
? 'development'
: isProfile
? 'profiling'
: isRelease
? 'production'
: 'unknown';