(actionCodeSettings?: ActionCodeSettings)
| 358 | } |
| 359 | |
| 360 | sendEmailVerification(actionCodeSettings?: ActionCodeSettings): Promise<void> { |
| 361 | return new Promise((resolve, reject) => { |
| 362 | if (!this.native) { |
| 363 | reject(); |
| 364 | } else { |
| 365 | NSFirebaseAuth().User.sendEmailVerification( |
| 366 | this.native, |
| 367 | actionCodeSettings?.native ?? null, |
| 368 | new org.nativescript.firebase.auth.FirebaseAuth.Callback({ |
| 369 | onSuccess(success) { |
| 370 | resolve(); |
| 371 | }, |
| 372 | onError(error) { |
| 373 | reject(FirebaseError.fromNative(error)); |
| 374 | }, |
| 375 | }) |
| 376 | ); |
| 377 | } |
| 378 | }); |
| 379 | } |
| 380 | |
| 381 | unlink(providerId: string): Promise<User> { |
| 382 | return new Promise((resolve, reject) => { |
nothing calls this directly
no test coverage detected