MCPcopy Index your code
hub / github.com/NativeScript/firebase / sendEmailVerification

Method sendEmailVerification

packages/firebase-auth/index.android.ts:360–379  ·  view source on GitHub ↗
(actionCodeSettings?: ActionCodeSettings)

Source from the content-addressed store, hash-verified

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) => {

Callers

nothing calls this directly

Calls 1

sendEmailVerificationMethod · 0.65

Tested by

no test coverage detected