()
| 1242 | } |
| 1243 | |
| 1244 | get native() { |
| 1245 | if (!this._native) { |
| 1246 | if (this._app?.native) { |
| 1247 | this._native = FIRAuth.authWithApp(this._app.native); |
| 1248 | } else { |
| 1249 | this._native = FIRAuth.auth(); |
| 1250 | } |
| 1251 | } |
| 1252 | return this._native; |
| 1253 | } |
| 1254 | |
| 1255 | get ios() { |
| 1256 | return this.native; |