import 'package:json_annotation/json_annotation.dart'; part 'member_info.g.dart'; @JsonSerializable(explicitToJson: true) class MemberInfo { String? id = ''; String? nickname = ''; String? headimg = ''; bool? userType = false; String? sex = ''; int? level = 0; String? remark = ''; String? createTime = ''; String? birth = ''; int? organic = 0; int? age = 0; String? signature = ''; String? background = ''; int? follow = 0; int? fans = 0; int? trendTotal = 0; int? gainLikeTotal = 0; MemberInfo(); factory MemberInfo.fromJson(Map json) => _$MemberInfoFromJson(json); Map toJson() => _$MemberInfoToJson(this); }