删除 lib/common/job/user_login.g.dart
This commit is contained in:
parent
1604548333
commit
bc3596100b
|
|
@ -1,31 +0,0 @@
|
|||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'user_login.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
UserLogin _$UserLoginFromJson(Map<String, dynamic> json) => $checkedCreate(
|
||||
'UserLogin',
|
||||
json,
|
||||
($checkedConvert) {
|
||||
final val = UserLogin(
|
||||
$checkedConvert('access_token', (v) => v as String),
|
||||
$checkedConvert('expires_in', (v) => v as int),
|
||||
$checkedConvert('token_type', (v) => v as String),
|
||||
);
|
||||
return val;
|
||||
},
|
||||
fieldKeyMap: const {
|
||||
'accessToken': 'access_token',
|
||||
'expiresIn': 'expires_in',
|
||||
'tokenType': 'token_type'
|
||||
},
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$UserLoginToJson(UserLogin instance) => <String, dynamic>{
|
||||
'access_token': instance.accessToken,
|
||||
'expires_in': instance.expiresIn,
|
||||
'token_type': instance.tokenType,
|
||||
};
|
||||
Loading…
Reference in New Issue