Flutter/오류해결

[Flutter] type 'List<dynamic>' is not a subtype of type 'List<String>'

주톨 2023. 1. 23. 18:27
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( ) 안에 그 리스트를 넣어주면 된다.