// quote model class class Quote{ final int id; final String author; final String body; const Quote({ required this.id, required this.author, required this.body, }); factory Quote.fromJson(Map json) { return Quote( id: json['id'], author: json['author'], body: json['body'], ); } }