반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- M1
- 내돈내산
- 데스크셋업
- error
- list
- listview
- swift
- react
- GetX
- AppBar
- ios
- Flutter
- 데스크테리어
- 춘식
- datetime
- visualstudiocode
- 라이언
- GitHub
- VSCode
- xcode
- AppleSilicon
- sqflite
- 카카오
- Android
- wrap
- 플러터
- 간단리뷰
- database
- Git
- TextField
Archives
- Today
- Total
목록JsonToDartBeanAction (1)
welcome to my blog
[Flutter] json parsing
클래스 선언 class Source { final String? id; final String? name; Source({required this.id, required this.name}); factory Source.fromJson(Map json) { print(json); return Source( id : json['id'], name : json['name'] ); } } class Article { final Source? source; final String? title; final String? urlToImage; final String? publishedAt; Article({required this.source, required this.title, required this.urlT..
Flutter
2021. 10. 15. 20:00