aves/lib/flutter_version.dart
2020-08-09 14:53:14 +09:00

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",
};