You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.7 KiB
47 lines
1.7 KiB
// GENERATED CODE - DO NOT MODIFY BY HAND |
|
|
|
part of 'member_info.dart'; |
|
|
|
// ************************************************************************** |
|
// JsonSerializableGenerator |
|
// ************************************************************************** |
|
|
|
MemberInfo _$MemberInfoFromJson(Map<String, dynamic> json) => MemberInfo() |
|
..id = json['id'] as String? |
|
..nickname = json['nickname'] as String? |
|
..headimg = json['headimg'] as String? |
|
..userType = json['userType'] as bool? |
|
..sex = json['sex'] as String? |
|
..level = (json['level'] as num?)?.toInt() |
|
..remark = json['remark'] as String? |
|
..createTime = json['createTime'] as String? |
|
..birth = json['birth'] as String? |
|
..organic = (json['organic'] as num?)?.toInt() |
|
..age = (json['age'] as num?)?.toInt() |
|
..signature = json['signature'] as String? |
|
..background = json['background'] as String? |
|
..follow = (json['follow'] as num?)?.toInt() |
|
..fans = (json['fans'] as num?)?.toInt() |
|
..trendTotal = (json['trendTotal'] as num?)?.toInt() |
|
..gainLikeTotal = (json['gainLikeTotal'] as num?)?.toInt(); |
|
|
|
Map<String, dynamic> _$MemberInfoToJson(MemberInfo instance) => |
|
<String, dynamic>{ |
|
'id': instance.id, |
|
'nickname': instance.nickname, |
|
'headimg': instance.headimg, |
|
'userType': instance.userType, |
|
'sex': instance.sex, |
|
'level': instance.level, |
|
'remark': instance.remark, |
|
'createTime': instance.createTime, |
|
'birth': instance.birth, |
|
'organic': instance.organic, |
|
'age': instance.age, |
|
'signature': instance.signature, |
|
'background': instance.background, |
|
'follow': instance.follow, |
|
'fans': instance.fans, |
|
'trendTotal': instance.trendTotal, |
|
'gainLikeTotal': instance.gainLikeTotal, |
|
};
|
|
|