flutter
The body might complete normally, causing 'null' to be returned 오류
햎피
2022. 5. 4. 08:01
반응형
함수가 null값을 return하면 안되는데, 코드에서 null값을 리턴하거나 리턴 값이 없을 때 발생한다.
나도 try, catch 구문에서 발생했는데, 이때 catch부분에 rethrow를 추가해주면 된다.
아래 링크를 참고함.
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
반응형