(ui: FUIAuth)
| 501 | } |
| 502 | |
| 503 | static fromNative(ui: FUIAuth) { |
| 504 | if (ui instanceof FUIAuth) { |
| 505 | const ret = new UI(); |
| 506 | ret._native = ui; |
| 507 | return ret; |
| 508 | } |
| 509 | return null; |
| 510 | } |
| 511 | |
| 512 | get native() { |
| 513 | return this._native; |
no outgoing calls
no test coverage detected