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'; }