class ReplyMember { ReplyMember({ this.mid, this.uname, this.sign, this.avatar, this.level, this.pendant, this.officialVerify, this.vip, this.fansDetail, }); String? mid; String? uname; String? sign; String? avatar; int? level; Pendant? pendant; Map? officialVerify; Map? vip; Map? fansDetail; UserSailing? userSailing; ReplyMember.fromJson(Map json) { mid = json['mid']; uname = json['uname']; sign = json['sign']; avatar = json['avatar']; level = json['level_info']['current_level']; pendant = Pendant.fromJson(json['pendant']); officialVerify = json['officia_verify']; vip = json['vip']; fansDetail = json['fans_detail']; userSailing = json['user_sailing'] != null ? UserSailing.fromJson(json['user_sailing']) : UserSailing(); } } class Pendant { Pendant({ this.pid, this.name, this.image, }); int? pid; String? name; String? image; Pendant.fromJson(Map json) { pid = json['pid']; name = json['name']; image = json['image']; } } class UserSailing { UserSailing({this.pendant, this.cardbg}); Map? pendant; Map? cardbg; UserSailing.fromJson(Map json) { pendant = json['pendant']; cardbg = json['cardbg']; } }