(ui: UI)
| 29 | scopes: string[] = []; |
| 30 | |
| 31 | getNative(ui: UI) { |
| 32 | if (this.scopes.length > 0) { |
| 33 | return FUIGoogleAuth.alloc().initWithAuthUIScopes(ui.native, this.scopes); |
| 34 | } else { |
| 35 | return FUIGoogleAuth.alloc().initWithAuthUI(ui.native); |
| 36 | } |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | export class FacebookProvider extends ProviderBase { |
nothing calls this directly
no outgoing calls
no test coverage detected