in google_cloud/lib/src/gcp_project.dart [44:51]
String? projectIdFromEnvironment() {
for (var envKey in gcpProjectIdEnvironmentVariables) {
final value = Platform.environment[envKey];
if (value != null) return value;
}
return null;
}