함수가 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 ..