From bc3596100b03cba0867f0fb88bd405da4a157be1 Mon Sep 17 00:00:00 2001 From: wangyang <1147192855@qq.com> Date: Wed, 3 Apr 2024 09:49:14 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=20lib/common/job/user=5Flogi?= =?UTF-8?q?n.g.dart?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/common/job/user_login.g.dart | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 lib/common/job/user_login.g.dart 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, - };