class ErrorMsgModel { String? title; String? msg; ErrorMsgModel({this.title, this.msg}); ErrorMsgModel.fromJson(Map json) { title = json['title']; msg = json['msg']; } Map toJson() { final Map data = new Map(); data['title'] = this.title; data['msg'] = this.msg; return data; } }