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';
22
22
/// Given an AppJSImp, return the Auth instance.
23
23
Auth getAuthInstance (App app) {
24
24
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
+ })));
26
30
}
27
31
28
32
/// 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 {
664
664
// external factory AuthSettings({bool appVerificationDisabledForTesting});
665
665
}
666
666
667
+ external dynamic get browserPopupRedirectResolver;
668
+
667
669
/// https://firebase.google.com/docs/reference/js/auth.multifactoruser.md#multifactoruser_interface
668
670
@JS ()
669
671
@anonymous
You can’t perform that action at this time.
0 commit comments