current_gcp_project 0.0.1 current_gcp_project: ^0.0.1 copied to clipboard
A helper to determine the current GCP project your code is running on.
import 'package:current_gcp_project/current_gcp_project.dart';
void main() async {
final projectId = await CurrentProjectId().currentProjectId();
// use projectId...
}