typedef WikiArticleMapModel = Map; class WikiArticleModel { final String title; final String content; WikiArticleModel({required this.title, required this.content}); WikiArticleModel.fromMap(WikiArticleMapModel map) : title = map['title']!, content = map['content']!; } class WikiArticleQueryModel { final String title; WikiArticleQueryModel({required this.title}); }