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