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

Method reload

packages/firebase-auth/index.ios.ts:320–334  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

318 }
319
320 reload(): Promise<void> {
321 return new Promise((resolve, reject) => {
322 if (!this.native) {
323 reject();
324 } else {
325 this.native.reloadWithCompletion((error) => {
326 if (error) {
327 reject(FirebaseError.fromNative(error));
328 } else {
329 resolve();
330 }
331 });
332 }
333 });
334 }
335
336 sendEmailVerification(actionCodeSettings?: ActionCodeSettings): Promise<void> {
337 return new Promise((resolve, reject) => {

Callers

nothing calls this directly

Calls 1

fromNativeMethod · 0.45

Tested by

no test coverage detected