12 lines
513 B
Dart
12 lines
513 B
Dart
// run `scripts/update_flutter_version.sh` to update with the content of `flutter --version --machine`
|
|
// note on static analysis: the output of the script above yields double quotes, just like the example below
|
|
// ignore_for_file: prefer_single_quotes
|
|
const Map<String, String> version = {
|
|
"channel": "unknown",
|
|
"dartSdkVersion": "unknown",
|
|
"engineRevision": "unknown",
|
|
"frameworkCommitDate": "unknown",
|
|
"frameworkRevision": "unknown",
|
|
"frameworkVersion": "unknown",
|
|
"repositoryUrl": "unknown",
|
|
};
|