// To parse this JSON data, do // // final edu = eduFromJson(jsonString); import 'dart:convert'; List eduFromJson(String str) => List.from(json.decode(str).map((x) => Edu.fromJson(x))); String eduToJson(List data) => json.encode(List.from(data.map((x) => x.toJson()))); class Edu { int id; int userId; String educationType; String institutionName; String degree; String specialty; int timeFrame; Edu({ required this.id, required this.userId, required this.educationType, required this.institutionName, required this.degree, required this.specialty, required this.timeFrame, }); factory Edu.fromJson(Map json) => Edu( id: json["id"], userId: json["user_id"], educationType: json["Education Type"], institutionName: json["Institution Name"], degree: json["Degree"], specialty: json["Specialty"], timeFrame: json["Time Frame"], ); Map toJson() => { "id": id, "user_id": userId, "Education Type": educationType, "Institution Name": institutionName, "Degree": degree, "Specialty": specialty, "Time Frame": timeFrame, }; }