[Flutter-error] LateInitializationError: Field '변수명' has not been initialized.

Hee Tae Shin·2023년 3월 13일
1

Flutter-error

목록 보기
5/5

에러 내용

LateInitializationError: Field '변수명' has not been initialized.

오류 원인

late String loggedInUserId;

수정 완료

late String loggedInUserId = "";

late 로 필드를 늦게 선언해주면, view 단에 내가 해주려는 비교문에 순간적으로 에러가 난다.
그러니 초기값을 반드시 선언해주자!

profile
안녕하세요

0개의 댓글