fromJson1 Flutter(Dart) - Model 객체 Json 매핑 쉽게 하기(@JsonSerializable) 들어가며.. 모델객체를 json데이터로 변환, json에서 모델객체로 변환하기 위해 우리는 Model class에 관용적으로 사용되는 fromJson, toJson이름의 함수를 구현한다. 이를 직접만드는 일은 사실 꽤 번거로운 일이고 비생산적이다. Dart 패키지인 json_serializable을 사용하여 이런 번거로운 일을 손쉽게 해결할 수 있다. 개발환경 windows 10 ( MacOS 무관 ) Visual Studio Code Flutter 2.10 ( Dart만 사용해도 무방하다. ) 프로젝트 생성 flutter create exam_json ⚙ pubspec.yaml dependencies: flutter: sdk: flutter http: ^0.13.4 json_annotation: ^4... 2022. 3. 17. 이전 1 다음