File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
packages/firebase_auth/firebase_auth_web/lib/src/interop Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,11 @@ export 'auth_interop.dart';
2222/// Given an AppJSImp, return the Auth instance.
2323Auth getAuthInstance (App app) {
2424 return Auth .getInstance (auth_interop.initializeAuth (
25- app.jsObject, jsify ({'errorMap' : auth_interop.debugErrorMap})));
25+ app.jsObject,
26+ jsify ({
27+ 'errorMap' : auth_interop.debugErrorMap,
28+ 'popupRedirectResolver' : auth_interop.browserPopupRedirectResolver
29+ })));
2630}
2731
2832/// User profile information, visible only to the Firebase project's apps.
Original file line number Diff line number Diff line change @@ -664,6 +664,8 @@ class AuthSettings {
664664 // external factory AuthSettings({bool appVerificationDisabledForTesting});
665665}
666666
667+ external dynamic get browserPopupRedirectResolver;
668+
667669/// https://firebase.google.com/docs/reference/js/auth.multifactoruser.md#multifactoruser_interface
668670@JS ()
669671@anonymous
You can’t perform that action at this time.
0 commit comments