()
| 778 | } |
| 779 | |
| 780 | get _builder() { |
| 781 | const builder = FIROAuthProvider.providerWithProviderID(this._providerId); |
| 782 | builder.customParameters = this._customParameters as any; |
| 783 | builder.scopes = this._scopes as any; |
| 784 | return builder; |
| 785 | } |
| 786 | |
| 787 | addCustomParameter(key: string, value: string) { |
| 788 | this._customParameters[key] = value; |
nothing calls this directly
no outgoing calls
no test coverage detected