// coverage:ignore-file // GENERATED CODE - DO NOT MODIFY BY HAND // ignore_for_file: type=lint // ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark part of 'user_login.dart'; // ************************************************************************** // FreezedGenerator // ************************************************************************** T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); UserLogin _$UserLoginFromJson(Map json) { return _UserLogin.fromJson(json); } /// @nodoc mixin _$UserLogin { // Master record key for the user used to index the local accounts table Typed get accountMasterRecordKey => throw _privateConstructorUsedError; // The identity secret as unlocked from the local accounts table Typed get identitySecret => throw _privateConstructorUsedError; // The time this login was most recently used Timestamp get lastActive => throw _privateConstructorUsedError; Map toJson() => throw _privateConstructorUsedError; @JsonKey(ignore: true) $UserLoginCopyWith get copyWith => throw _privateConstructorUsedError; } /// @nodoc abstract class $UserLoginCopyWith<$Res> { factory $UserLoginCopyWith(UserLogin value, $Res Function(UserLogin) then) = _$UserLoginCopyWithImpl<$Res, UserLogin>; @useResult $Res call( {Typed accountMasterRecordKey, Typed identitySecret, Timestamp lastActive}); } /// @nodoc class _$UserLoginCopyWithImpl<$Res, $Val extends UserLogin> implements $UserLoginCopyWith<$Res> { _$UserLoginCopyWithImpl(this._value, this._then); // ignore: unused_field final $Val _value; // ignore: unused_field final $Res Function($Val) _then; @pragma('vm:prefer-inline') @override $Res call({ Object? accountMasterRecordKey = null, Object? identitySecret = null, Object? lastActive = null, }) { return _then(_value.copyWith( accountMasterRecordKey: null == accountMasterRecordKey ? _value.accountMasterRecordKey : accountMasterRecordKey // ignore: cast_nullable_to_non_nullable as Typed, identitySecret: null == identitySecret ? _value.identitySecret : identitySecret // ignore: cast_nullable_to_non_nullable as Typed, lastActive: null == lastActive ? _value.lastActive : lastActive // ignore: cast_nullable_to_non_nullable as Timestamp, ) as $Val); } } /// @nodoc abstract class _$$_UserLoginCopyWith<$Res> implements $UserLoginCopyWith<$Res> { factory _$$_UserLoginCopyWith( _$_UserLogin value, $Res Function(_$_UserLogin) then) = __$$_UserLoginCopyWithImpl<$Res>; @override @useResult $Res call( {Typed accountMasterRecordKey, Typed identitySecret, Timestamp lastActive}); } /// @nodoc class __$$_UserLoginCopyWithImpl<$Res> extends _$UserLoginCopyWithImpl<$Res, _$_UserLogin> implements _$$_UserLoginCopyWith<$Res> { __$$_UserLoginCopyWithImpl( _$_UserLogin _value, $Res Function(_$_UserLogin) _then) : super(_value, _then); @pragma('vm:prefer-inline') @override $Res call({ Object? accountMasterRecordKey = null, Object? identitySecret = null, Object? lastActive = null, }) { return _then(_$_UserLogin( accountMasterRecordKey: null == accountMasterRecordKey ? _value.accountMasterRecordKey : accountMasterRecordKey // ignore: cast_nullable_to_non_nullable as Typed, identitySecret: null == identitySecret ? _value.identitySecret : identitySecret // ignore: cast_nullable_to_non_nullable as Typed, lastActive: null == lastActive ? _value.lastActive : lastActive // ignore: cast_nullable_to_non_nullable as Timestamp, )); } } /// @nodoc @JsonSerializable() class _$_UserLogin implements _UserLogin { const _$_UserLogin( {required this.accountMasterRecordKey, required this.identitySecret, required this.lastActive}); factory _$_UserLogin.fromJson(Map json) => _$$_UserLoginFromJson(json); // Master record key for the user used to index the local accounts table @override final Typed accountMasterRecordKey; // The identity secret as unlocked from the local accounts table @override final Typed identitySecret; // The time this login was most recently used @override final Timestamp lastActive; @override String toString() { return 'UserLogin(accountMasterRecordKey: $accountMasterRecordKey, identitySecret: $identitySecret, lastActive: $lastActive)'; } @override bool operator ==(dynamic other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$_UserLogin && (identical(other.accountMasterRecordKey, accountMasterRecordKey) || other.accountMasterRecordKey == accountMasterRecordKey) && (identical(other.identitySecret, identitySecret) || other.identitySecret == identitySecret) && (identical(other.lastActive, lastActive) || other.lastActive == lastActive)); } @JsonKey(ignore: true) @override int get hashCode => Object.hash( runtimeType, accountMasterRecordKey, identitySecret, lastActive); @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') _$$_UserLoginCopyWith<_$_UserLogin> get copyWith => __$$_UserLoginCopyWithImpl<_$_UserLogin>(this, _$identity); @override Map toJson() { return _$$_UserLoginToJson( this, ); } } abstract class _UserLogin implements UserLogin { const factory _UserLogin( {required final Typed accountMasterRecordKey, required final Typed identitySecret, required final Timestamp lastActive}) = _$_UserLogin; factory _UserLogin.fromJson(Map json) = _$_UserLogin.fromJson; @override // Master record key for the user used to index the local accounts table Typed get accountMasterRecordKey; @override // The identity secret as unlocked from the local accounts table Typed get identitySecret; @override // The time this login was most recently used Timestamp get lastActive; @override @JsonKey(ignore: true) _$$_UserLoginCopyWith<_$_UserLogin> get copyWith => throw _privateConstructorUsedError; } ActiveLogins _$ActiveLoginsFromJson(Map json) { return _ActiveLogins.fromJson(json); } /// @nodoc mixin _$ActiveLogins { // The list of current logged in accounts IList get userLogins => throw _privateConstructorUsedError; // The current selected account indexed by master record key Typed? get activeUserLogin => throw _privateConstructorUsedError; Map toJson() => throw _privateConstructorUsedError; @JsonKey(ignore: true) $ActiveLoginsCopyWith get copyWith => throw _privateConstructorUsedError; } /// @nodoc abstract class $ActiveLoginsCopyWith<$Res> { factory $ActiveLoginsCopyWith( ActiveLogins value, $Res Function(ActiveLogins) then) = _$ActiveLoginsCopyWithImpl<$Res, ActiveLogins>; @useResult $Res call( {IList userLogins, Typed? activeUserLogin}); } /// @nodoc class _$ActiveLoginsCopyWithImpl<$Res, $Val extends ActiveLogins> implements $ActiveLoginsCopyWith<$Res> { _$ActiveLoginsCopyWithImpl(this._value, this._then); // ignore: unused_field final $Val _value; // ignore: unused_field final $Res Function($Val) _then; @pragma('vm:prefer-inline') @override $Res call({ Object? userLogins = null, Object? activeUserLogin = freezed, }) { return _then(_value.copyWith( userLogins: null == userLogins ? _value.userLogins : userLogins // ignore: cast_nullable_to_non_nullable as IList, activeUserLogin: freezed == activeUserLogin ? _value.activeUserLogin : activeUserLogin // ignore: cast_nullable_to_non_nullable as Typed?, ) as $Val); } } /// @nodoc abstract class _$$_ActiveLoginsCopyWith<$Res> implements $ActiveLoginsCopyWith<$Res> { factory _$$_ActiveLoginsCopyWith( _$_ActiveLogins value, $Res Function(_$_ActiveLogins) then) = __$$_ActiveLoginsCopyWithImpl<$Res>; @override @useResult $Res call( {IList userLogins, Typed? activeUserLogin}); } /// @nodoc class __$$_ActiveLoginsCopyWithImpl<$Res> extends _$ActiveLoginsCopyWithImpl<$Res, _$_ActiveLogins> implements _$$_ActiveLoginsCopyWith<$Res> { __$$_ActiveLoginsCopyWithImpl( _$_ActiveLogins _value, $Res Function(_$_ActiveLogins) _then) : super(_value, _then); @pragma('vm:prefer-inline') @override $Res call({ Object? userLogins = null, Object? activeUserLogin = freezed, }) { return _then(_$_ActiveLogins( userLogins: null == userLogins ? _value.userLogins : userLogins // ignore: cast_nullable_to_non_nullable as IList, activeUserLogin: freezed == activeUserLogin ? _value.activeUserLogin : activeUserLogin // ignore: cast_nullable_to_non_nullable as Typed?, )); } } /// @nodoc @JsonSerializable() class _$_ActiveLogins implements _ActiveLogins { const _$_ActiveLogins({required this.userLogins, this.activeUserLogin}); factory _$_ActiveLogins.fromJson(Map json) => _$$_ActiveLoginsFromJson(json); // The list of current logged in accounts @override final IList userLogins; // The current selected account indexed by master record key @override final Typed? activeUserLogin; @override String toString() { return 'ActiveLogins(userLogins: $userLogins, activeUserLogin: $activeUserLogin)'; } @override bool operator ==(dynamic other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$_ActiveLogins && const DeepCollectionEquality() .equals(other.userLogins, userLogins) && (identical(other.activeUserLogin, activeUserLogin) || other.activeUserLogin == activeUserLogin)); } @JsonKey(ignore: true) @override int get hashCode => Object.hash(runtimeType, const DeepCollectionEquality().hash(userLogins), activeUserLogin); @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') _$$_ActiveLoginsCopyWith<_$_ActiveLogins> get copyWith => __$$_ActiveLoginsCopyWithImpl<_$_ActiveLogins>(this, _$identity); @override Map toJson() { return _$$_ActiveLoginsToJson( this, ); } } abstract class _ActiveLogins implements ActiveLogins { const factory _ActiveLogins( {required final IList userLogins, final Typed? activeUserLogin}) = _$_ActiveLogins; factory _ActiveLogins.fromJson(Map json) = _$_ActiveLogins.fromJson; @override // The list of current logged in accounts IList get userLogins; @override // The current selected account indexed by master record key Typed? get activeUserLogin; @override @JsonKey(ignore: true) _$$_ActiveLoginsCopyWith<_$_ActiveLogins> get copyWith => throw _privateConstructorUsedError; }