kBuildChannel top-level property
final
Build Channel
Holds the current build channel of the application.
The value is read from the compile-time variable BUILD_CHANNEL
.
Defaults to BuildChannel.dev if the compile-time variable is not set.
In order to set the variable use --dart-define
when building the app:
flutter build [os] --dart-define=BUILD_CHANNEL=`VALUE`
Implementation
final kBuildChannel = BuildChannel.values.byName(_kBuildChannel);