seong

Flutter - Nested Structure 구조 toJson, fromJson하기 본문

Flutter/중계 플랫폼 프로젝트

Flutter - Nested Structure 구조 toJson, fromJson하기

hyeonseong 2022. 12. 8. 10:45

UserReqDto의 구조이다.

아래 보면 category는 오브젝트List형태이다. 단순 toJson을 해줄순 없기 때문에 따로 처리해줘야한다.

먼저 Category도 toJson,fromJson작성

Nested Structure toJson, fromJson하기

CategoryReqDto는 List로 감싸져있기 때문에 Map 으로 한번에 처리를 해준다.

fromJson

 

toJson

오브젝트 리스트 들을 map타입으로 하나하나 json으로 바꾼 후 다시 toList로 리스트로 만들어준다