blob: d0a95774972d76ce5e9ff32c413d35947101d83b [file] [log] [blame]
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// @docImport 'dart:io'
/// Details about the Flutter version this app was compiled with,
/// corresponding to the output of `flutter --version`.
///
/// When this Flutter version was built from a fork, or when Flutter runs in a
/// custom embedder, these values might be unreliable.
///
/// See also:
/// - [Platform.version]
abstract final class FlutterVersion {
const FlutterVersion._();
/// The Flutter version used to compile the app.
static const String? version = bool.hasEnvironment('FLUTTER_VERSION')
? String.fromEnvironment('FLUTTER_VERSION')
: null;
/// The Flutter channel used to compile the app.
static const String? channel = bool.hasEnvironment('FLUTTER_CHANNEL')
? String.fromEnvironment('FLUTTER_CHANNEL')
: null;
/// The URL of the Git repository from which Flutter was obtained.
static const String? gitUrl = bool.hasEnvironment('FLUTTER_GIT_URL')
? String.fromEnvironment('FLUTTER_GIT_URL')
: null;
/// The Flutter framework revision, as a (short) Git commit ID.
static const String? frameworkRevision = bool.hasEnvironment('FLUTTER_FRAMEWORK_REVISION')
? String.fromEnvironment('FLUTTER_FRAMEWORK_REVISION')
: null;
/// The Flutter engine revision.
static const String? engineRevision = bool.hasEnvironment('FLUTTER_ENGINE_REVISION')
? String.fromEnvironment('FLUTTER_ENGINE_REVISION')
: null;
// This is included since [Platform.version](https://api.dart.dev/stable/dart-io/Platform/version.html)
// is not included on web platforms.
/// The Dart version used to compile the app.
static const String? dartVersion = bool.hasEnvironment('FLUTTER_DART_VERSION')
? String.fromEnvironment('FLUTTER_DART_VERSION')
: null;
}