(providerId: string)
| 772 | _customParameters: { [key: string]: string }; |
| 773 | _scopes: string[]; |
| 774 | constructor(providerId: string) { |
| 775 | this._providerId = providerId; |
| 776 | this._customParameters = {}; |
| 777 | this._scopes = []; |
| 778 | } |
| 779 | |
| 780 | get _builder() { |
| 781 | const builder = FIROAuthProvider.providerWithProviderID(this._providerId); |
nothing calls this directly
no outgoing calls
no test coverage detected