class RelatedQuestionsModel { List? questions; RelatedQuestionsModel({this.questions}); RelatedQuestionsModel.fromJson(Map json) { questions = json['questions'].cast(); } Map toJson() { final Map data = {}; data['questions'] = questions; return data; } }