quicktype.io 를 통해서 데이터 객체 생성하기
https://app.quicktype.io/ 여기를 이용하면 귀찮은 데이터 객체 생성하기를 해주고 관련 함수도 만들어 준다. - 나는, Put encoder & decoder in Class 체크를 풀어서 class 밖에 생성되는 목록관련 함수들을 클래스 안으로 넣고 static 메서드로 변환해 주니까 편하드라. import 'dart:convert'; class Product { String name; int age; Product({ required this.name, required this.age, }); factory Product.fromRawJson(String str) => Product.fromJson(json.decode(str)); String toRawJson() => json.e..