// GENERATED CODE - DO NOT MODIFY BY HAND part of 'user_login.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** _$_UserLogin _$$_UserLoginFromJson(Map json) => _$_UserLogin( accountMasterRecordKey: Typed.fromJson( json['account_master_record_key']), identitySecret: Typed.fromJson(json['identity_secret']), accountRecordInfo: AccountRecordInfo.fromJson(json['account_record_info']), lastActive: Timestamp.fromJson(json['last_active']), ); Map _$$_UserLoginToJson(_$_UserLogin instance) => { 'account_master_record_key': instance.accountMasterRecordKey.toJson(), 'identity_secret': instance.identitySecret.toJson(), 'account_record_info': instance.accountRecordInfo.toJson(), 'last_active': instance.lastActive.toJson(), }; _$_ActiveLogins _$$_ActiveLoginsFromJson(Map json) => _$_ActiveLogins( userLogins: IList.fromJson( json['user_logins'], (value) => UserLogin.fromJson(value)), activeUserLogin: json['active_user_login'] == null ? null : Typed.fromJson(json['active_user_login']), ); Map _$$_ActiveLoginsToJson(_$_ActiveLogins instance) => { 'user_logins': instance.userLogins.toJson( (value) => value.toJson(), ), 'active_user_login': instance.activeUserLogin?.toJson(), };