class BlackListDataModel { BlackListDataModel({ this.list, this.total, }); List? list; int? total; BlackListDataModel.fromJson(Map json) { list = json['list'] .map((e) => BlackListItem.fromJson(e)) .toList(); total = json['total']; } } class BlackListItem { BlackListItem({ this.face, this.mid, this.mtime, this.uname, }); String? face; int? mid; int? mtime; String? uname; BlackListItem.fromJson(Map json) { face = json['face']; mid = json['mid']; mtime = json['mtime']; uname = json['uname']; } }