Answers for "how to parse an array of json objects in flutter"

0

how to parse an array of json objects in flutter

//pass your decoded json
Map<String, dynamic> json = jsonDecode(rawJson);

List<Location> locations = List<Location>.from(json["locations"].map((x) => Location.fromJson(x)))
//Location class => days is a premitive list and can be deserialized below
class Location {
  Location({
    this.name,
    this.days,
  });

  String name;
  List<int> days;

  factory Location.fromJson(Map<String, dynamic> json) => Location(
    name: json["name"],
    days: List<int>.from(json["days"].map((x) => x)),
  );

  Map<String, dynamic> toJson() => {
    "name": name,
    "days": List<dynamic>.from(days.map((x) => x)),
  };
}
Posted by: Guest on August-29-2020

Code answers related to "how to parse an array of json objects in flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language