class StatisticGeneralContent { List contents; int lastPage; StatisticGeneralContent({required this.contents, required this.lastPage}); factory StatisticGeneralContent.fromJson(Map json) { return StatisticGeneralContent( contents: List.from(json['contents'].map((x) => Content.fromJson(x))), lastPage: json['lastPage'], ); } Map toJson() { return { 'contents': List.from(contents.map((x) => x.toJson())), 'lastPage': lastPage, }; } } class Content { final int id; final String label; final String title; final int category; final int type; final bool marked; final Data data; Content({ required this.category, required this.id, required this.label, required this.title, required this.type, required this.marked, required this.data, }); factory Content.fromJson(Map json) { return Content( id: json['id'], label: json['label'], title: json['title'], type: json['type'], marked: json['marked'], data: Data.fromJson(json['data']), category: json['category'], ); } Map toJson() { return { 'id': id, 'label': label, 'title': title, 'category': category, 'type': type, 'marked': marked, 'data': data.toJson(), }; } } class Data { final String p; final String h; final String l; final String d; final double dp; final String dt; final String t; final String tEn; final String tG; final String ts; Data({ required this.p, required this.h, required this.l, required this.d, required this.dp, required this.dt, required this.t, required this.tEn, required this.tG, required this.ts, }); factory Data.fromJson(Map json) { return Data( p: json['p'], h: json['h'], l: json['l'], d: json['d'], dp: json['dp'].toDouble(), // Ensuring correct type dt: json['dt'], t: json['t'], tEn: json['t_en'], tG: json['t-g'], ts: json['ts'], ); } Map toJson() { return { 'p': p, 'h': h, 'l': l, 'd': d, 'dp': dp, 'dt': dt, 't': t, 't_en': tEn, 't-g': tG, 'ts': ts, }; } }