(native: FIRApp)
| 34 | _nativeApp: FIRApp; |
| 35 | |
| 36 | static fromNative(native: FIRApp) { |
| 37 | if (native instanceof FIRApp) { |
| 38 | const opts = new FirebaseOptions(); |
| 39 | opts._nativeApp = native; |
| 40 | return opts; |
| 41 | } |
| 42 | return null; |
| 43 | } |
| 44 | get ios() { |
| 45 | return this.native; |
| 46 | } |
nothing calls this directly
no outgoing calls
no test coverage detected