constructor()

in lib/auth/googleSACredential.ts [17:26]


  constructor(json: string | JWTInput, options?: RefreshOptions) {
    if (!json) {
      throw new Error("'json' must be set when using service account flow.");
    }

    this.json = json;
    this.options = options;

    this.build();
  }