constructor()

in lib/auth/googleSAFileCredential.ts [13:21]


  constructor(keyFile: string) {
    if (!keyFile) {
      throw new Error("'keyFile' must be set when using service account flow.");
    }

    this._keyFile = keyFile;

    this.build();
  }