diff --git a/lib/common/job/user_login.g.dart b/lib/common/job/user_login.g.dart deleted file mode 100644 index b0b137a..0000000 --- a/lib/common/job/user_login.g.dart +++ /dev/null @@ -1,31 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'user_login.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -UserLogin _$UserLoginFromJson(Map 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 _$UserLoginToJson(UserLogin instance) => { - 'access_token': instance.accessToken, - 'expires_in': instance.expiresIn, - 'token_type': instance.tokenType, - };