// GENERATED CODE - DO NOT MODIFY BY HAND part of 'user_login.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** _$UserLoginImpl _$$UserLoginImplFromJson(Map json) => _$UserLoginImpl( superIdentityRecordKey: Typed.fromJson( json['super_identity_record_key']), identitySecret: Typed.fromJson(json['identity_secret']), accountRecordInfo: AccountRecordInfo.fromJson(json['account_record_info']), lastActive: Timestamp.fromJson(json['last_active']), ); Map _$$UserLoginImplToJson(_$UserLoginImpl instance) => { 'super_identity_record_key': instance.superIdentityRecordKey.toJson(), 'identity_secret': instance.identitySecret.toJson(), 'account_record_info': instance.accountRecordInfo.toJson(), 'last_active': instance.lastActive.toJson(), };