certFromPath method

Credential certFromPath(
  1. String path
)

Creates app certificate from service account file at specified path.

Implementation

Credential certFromPath(String path) {
  return ServiceAccountCredential(path);
}