kPatchAppVersion top-level constant

int const kPatchAppVersion

Holds the patch version of the application. The value is read from the compile-time variable PATCH_APP_VERSION.

Defaults to 0 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=PATCH_APP_VERSION=`VALUE`

Implementation

const kPatchAppVersion =
    int.fromEnvironment("PATCH_APP_VERSION", defaultValue: 0);