firebaseAdminCredentialPath property

String? firebaseAdminCredentialPath

The path where credentials obtained by doing Credentials.login are stored

On windows, this is $APP_DATA/firebase_admin/application_default_credentials.json, on other platforms, this is $HOME/.config/firebase_admin/application_default_credentials.json.

Implementation

static String? get firebaseAdminCredentialPath {
  var config = _configDir;
  if (config == null) return null;
  return path.join(
      config, 'firebase_admin/application_default_credentials.json');
}