factory Quote.fromJson(Map<String, dynamic> json) { return Quote( text: json['content'], author: json['author'], ); }