40 lines
1.5 KiB
Dart
40 lines
1.5 KiB
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'login_controller.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
LoginModel _$LoginModelFromJson(Map<String, dynamic> json) => LoginModel()
|
|
..loginStyle = (json['loginStyle'] as num?)?.toInt()
|
|
..account = json['account'] as String?
|
|
..password = json['password'] as String?
|
|
..phone = json['phone'] as String?
|
|
..code = json['code'] as String?
|
|
..register_code = json['register_code'] as String?
|
|
..showPd = json['showPd'] as bool?
|
|
..forceLogin = (json['forceLogin'] as num?)?.toInt()
|
|
..isIos = json['isIos'] as bool?
|
|
..isWeChatNotInstalled = json['isWeChatNotInstalled'] as bool?
|
|
..register_agree = json['register_agree'] as bool?
|
|
..updatePhone = json['updatePhone'] as String?
|
|
..updateCode = json['updateCode'] as String?;
|
|
|
|
Map<String, dynamic> _$LoginModelToJson(LoginModel instance) =>
|
|
<String, dynamic>{
|
|
'loginStyle': instance.loginStyle,
|
|
'account': instance.account,
|
|
'password': instance.password,
|
|
'phone': instance.phone,
|
|
'code': instance.code,
|
|
'register_code': instance.register_code,
|
|
'showPd': instance.showPd,
|
|
'forceLogin': instance.forceLogin,
|
|
'isIos': instance.isIos,
|
|
'isWeChatNotInstalled': instance.isWeChatNotInstalled,
|
|
'register_agree': instance.register_agree,
|
|
'updatePhone': instance.updatePhone,
|
|
'updateCode': instance.updateCode,
|
|
};
|