kAppVersionName top-level constant
Holds the name of the application version.
The value is read from the compile-time variable APP_VERSION_NAME
.
Defaults to Debug ver.
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=APP_VERSION_NAME=`VALUE`
Implementation
const kAppVersionName =
String.fromEnvironment("APP_VERSION_NAME", defaultValue: "Debug ver.");