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.
40 lines
1.4 KiB
40 lines
1.4 KiB
4 years ago
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
|
||
|
part of 'user_entity.dart';
|
||
|
|
||
|
// **************************************************************************
|
||
|
// JsonSerializableGenerator
|
||
|
// **************************************************************************
|
||
|
|
||
|
UserEntity _$UserEntityFromJson(Map<String, dynamic> json) {
|
||
|
return UserEntity()
|
||
|
..account = json['account'] as String
|
||
|
..avatar = json['avatar'] as String
|
||
|
..expiration = json['expiration'] as String
|
||
|
..expire = json['expire'] as String
|
||
|
..mobile = json['mobile'] as String
|
||
|
..name = json['name'] as String
|
||
|
..refreshToken = json['refreshToken'] as String
|
||
|
..token = json['token'] as String
|
||
|
..tokenType = json['tokenType'] as String
|
||
|
..userId = json['userId'] as String
|
||
|
..userType = json['userType'] as String
|
||
|
..workDescribe = json['workDescribe'] as String;
|
||
|
}
|
||
|
|
||
|
Map<String, dynamic> _$UserEntityToJson(UserEntity instance) =>
|
||
|
<String, dynamic>{
|
||
|
'account': instance.account,
|
||
|
'avatar': instance.avatar,
|
||
|
'expiration': instance.expiration,
|
||
|
'expire': instance.expire,
|
||
|
'mobile': instance.mobile,
|
||
|
'name': instance.name,
|
||
|
'refreshToken': instance.refreshToken,
|
||
|
'token': instance.token,
|
||
|
'tokenType': instance.tokenType,
|
||
|
'userId': instance.userId,
|
||
|
'userType': instance.userType,
|
||
|
'workDescribe': instance.workDescribe,
|
||
|
};
|