flutter

The body might complete normally, causing 'null' to be returned 오류

햎피 2022. 5. 4. 08:01
반응형

함수가 null값을 return하면 안되는데, 코드에서 null값을 리턴하거나 리턴 값이 없을 때 발생한다.

나도 try, catch 구문에서 발생했는데, 이때 catch부분에 rethrow를 추가해주면 된다.

에러난 코드

 

에러 없어짐

 

 

아래 링크를 참고함.

https://stackoverflow.com/questions/68119285/the-body-might-complete-normally-causing-null-to-be-returned-but-the-return

 

The body might complete normally, causing 'null' to be returned, but the return type is a potentially non-nullable type

I'm using new dart version >=2.12.0 <3.0.0 with null safety enabled. I have added my code for reference. MatchesService import 'package:cric_app/AppUrls.dart'; import 'package:cric_app/features/

stackoverflow.com

 

반응형

'flutter' 카테고리의 다른 글

flutter error - Error launching application on sdk gphone64 arm64  (0) 2022.06.01
flutter table calendar  (0) 2022.05.31
Flutter Quill text editor  (0) 2022.05.27
flutter type 확인하기  (0) 2022.05.04
Get 과 Post의 차이  (0) 2022.05.04