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

박망키·2023년 1월 20일
0

Flutter 야금야금 먹기

목록 보기
89/97

response 중에 value가 List으로 오는게 있었다
파싱하던중에 종종 저런 타입에러가 뜨는데
맨날까먹어서 기록한다

class goal {
final List<String> goalList;
  ....

factory goal.fromMap(Map<String, dynamic> map){
  return goal(
	goalList : map['goalList']);
  ///이러면 타입에러뜸
 }
  
}
///이러면 안뜸
goalList : List<String>.from(map['goalList']));

이게 뭐라고 맨날 까먹냐

profile
무럭무럭 자라는 망키

0개의 댓글