728x90
type 'List<dynamic>' is not a subtype of type 'List<String>'
List<String>타입을 넣어야하는데 List<dynamic> 타입이라서 뜨는 에러.
해결방법
List<dynamic>을 List<String> 으로 타입변환을 하면 된다.
List<String>.from(리스트<다이나믹>)
List<String>.from( ) 안에 그 리스트를 넣어주면 된다.
'Flutter > 오류해결' 카테고리의 다른 글
[Flutter] TextField 복사/붙여넣기 안되는 문제 해결 (0) | 2023.08.09 |
---|---|
[Flutter] Could not find package "build_runner". Did you forget to add a dependency? (0) | 2023.01.25 |
Flutter) CERTIFICATE_VERIFY_FAILED 에러 해결방법 (2) | 2022.09.28 |
에러 'vector' file not found (0) | 2022.07.27 |
에러 Cannot run with sound null safety, because the following dependencies (0) | 2022.07.27 |