반응형
문제 상황 (Problem)
flutter 앱을 빌드하는 중에 아래와 같은 에러가 발생했다.
firebase_auth-3.2.0 Error: The argument type 'bool?' can't be assigned to the parameter type 'bool' because 'bool?' is nullable and 'bool' isn't.
해결 방법 (Solution)
1. flutter pub upgrade 수행
2. flutter doctor 체크
참고 사이트
https://github.com/firebase/flutterfire/issues/9015
반응형