Uncaught Error: Expected a value of type 'FutureOr<UserCredentialJsImpl>', but got one of type 'MemoryInfo'

Uncaught Error: Expected a value of type 'FutureOr<UserCredentialJsImpl>', but got one of type 'MemoryInfo'

所以我正在尝试修复 AngularDart 遗留应用程序中的一些错误

我认为是 firebase auth 的问题?

这是我的代码

import 'package:firebase/firebase.dart' as firebase;
 try {
       await firebase
        .auth()
        .signInWithEmailAndPassword('email', 'password')
        .then((value) => print('success'));
    } catch (e) {
      print(e);
    }

但是当我尝试执行此操作时出现此错误

这是我的依赖项

Dart VM version: 2.7.1
firebase: 5.0.4

感谢任何形式的帮助,因为我没有使用 AngularDart 的经验 谢谢!

我遇到了同样的问题。有用的是将我的飞镖版本更新为 2.10.4 并将 pubspec.yaml 中的 build_web_compilers 更新为 build_web_compilers: ^2.10.0.