13 lines
290 B
Dart
13 lines
290 B
Dart
class BuildInfo {
|
|
static const String date = String.fromEnvironment(
|
|
'IGNIS_BUILD_DATE',
|
|
defaultValue: 'dev',
|
|
);
|
|
static const String gitSha = String.fromEnvironment(
|
|
'IGNIS_GIT_SHA',
|
|
defaultValue: 'local',
|
|
);
|
|
|
|
static String get label => 'build $date - $gitSha';
|
|
}
|