// GENERATED CODE - DO NOT MODIFY BY HAND part of 'subscription_state.dart'; // ************************************************************************** // BuiltValueGenerator // ************************************************************************** Serializer _$subscriptionStateSerializer = new _$SubscriptionStateSerializer(); Serializer _$subscriptionUIStateSerializer = new _$SubscriptionUIStateSerializer(); class _$SubscriptionStateSerializer implements StructuredSerializer { @override final Iterable types = const [SubscriptionState, _$SubscriptionState]; @override final String wireName = 'SubscriptionState'; @override Iterable serialize(Serializers serializers, SubscriptionState object, {FullType specifiedType = FullType.unspecified}) { final result = [ 'map', serializers.serialize(object.map, specifiedType: const FullType(BuiltMap, const [ const FullType(String), const FullType(SubscriptionEntity) ])), 'list', serializers.serialize(object.list, specifiedType: const FullType(BuiltList, const [const FullType(String)])), ]; return result; } @override SubscriptionState deserialize( Serializers serializers, Iterable serialized, {FullType specifiedType = FullType.unspecified}) { final result = new SubscriptionStateBuilder(); final iterator = serialized.iterator; while (iterator.moveNext()) { final key = iterator.current! as String; iterator.moveNext(); final Object? value = iterator.current; switch (key) { case 'map': result.map.replace(serializers.deserialize(value, specifiedType: const FullType(BuiltMap, const [ const FullType(String), const FullType(SubscriptionEntity) ]))!); break; case 'list': result.list.replace(serializers.deserialize(value, specifiedType: const FullType( BuiltList, const [const FullType(String)]))! as BuiltList); break; } } return result.build(); } } class _$SubscriptionUIStateSerializer implements StructuredSerializer { @override final Iterable types = const [ SubscriptionUIState, _$SubscriptionUIState ]; @override final String wireName = 'SubscriptionUIState'; @override Iterable serialize( Serializers serializers, SubscriptionUIState object, {FullType specifiedType = FullType.unspecified}) { final result = [ 'listUIState', serializers.serialize(object.listUIState, specifiedType: const FullType(ListUIState)), 'tabIndex', serializers.serialize(object.tabIndex, specifiedType: const FullType(int)), ]; Object? value; value = object.editing; if (value != null) { result ..add('editing') ..add(serializers.serialize(value, specifiedType: const FullType(SubscriptionEntity))); } value = object.selectedId; if (value != null) { result ..add('selectedId') ..add(serializers.serialize(value, specifiedType: const FullType(String))); } value = object.forceSelected; if (value != null) { result ..add('forceSelected') ..add( serializers.serialize(value, specifiedType: const FullType(bool))); } return result; } @override SubscriptionUIState deserialize( Serializers serializers, Iterable serialized, {FullType specifiedType = FullType.unspecified}) { final result = new SubscriptionUIStateBuilder(); final iterator = serialized.iterator; while (iterator.moveNext()) { final key = iterator.current! as String; iterator.moveNext(); final Object? value = iterator.current; switch (key) { case 'editing': result.editing.replace(serializers.deserialize(value, specifiedType: const FullType(SubscriptionEntity))! as SubscriptionEntity); break; case 'listUIState': result.listUIState.replace(serializers.deserialize(value, specifiedType: const FullType(ListUIState))! as ListUIState); break; case 'selectedId': result.selectedId = serializers.deserialize(value, specifiedType: const FullType(String)) as String?; break; case 'forceSelected': result.forceSelected = serializers.deserialize(value, specifiedType: const FullType(bool)) as bool?; break; case 'tabIndex': result.tabIndex = serializers.deserialize(value, specifiedType: const FullType(int))! as int; break; } } return result.build(); } } class _$SubscriptionState extends SubscriptionState { @override final BuiltMap map; @override final BuiltList list; factory _$SubscriptionState( [void Function(SubscriptionStateBuilder)? updates]) => (new SubscriptionStateBuilder()..update(updates))._build(); _$SubscriptionState._({required this.map, required this.list}) : super._() { BuiltValueNullFieldError.checkNotNull(map, r'SubscriptionState', 'map'); BuiltValueNullFieldError.checkNotNull(list, r'SubscriptionState', 'list'); } @override SubscriptionState rebuild(void Function(SubscriptionStateBuilder) updates) => (toBuilder()..update(updates)).build(); @override SubscriptionStateBuilder toBuilder() => new SubscriptionStateBuilder()..replace(this); @override bool operator ==(Object other) { if (identical(other, this)) return true; return other is SubscriptionState && map == other.map && list == other.list; } int? __hashCode; @override int get hashCode { if (__hashCode != null) return __hashCode!; var _$hash = 0; _$hash = $jc(_$hash, map.hashCode); _$hash = $jc(_$hash, list.hashCode); _$hash = $jf(_$hash); return __hashCode ??= _$hash; } @override String toString() { return (newBuiltValueToStringHelper(r'SubscriptionState') ..add('map', map) ..add('list', list)) .toString(); } } class SubscriptionStateBuilder implements Builder { _$SubscriptionState? _$v; MapBuilder? _map; MapBuilder get map => _$this._map ??= new MapBuilder(); set map(MapBuilder? map) => _$this._map = map; ListBuilder? _list; ListBuilder get list => _$this._list ??= new ListBuilder(); set list(ListBuilder? list) => _$this._list = list; SubscriptionStateBuilder(); SubscriptionStateBuilder get _$this { final $v = _$v; if ($v != null) { _map = $v.map.toBuilder(); _list = $v.list.toBuilder(); _$v = null; } return this; } @override void replace(SubscriptionState other) { ArgumentError.checkNotNull(other, 'other'); _$v = other as _$SubscriptionState; } @override void update(void Function(SubscriptionStateBuilder)? updates) { if (updates != null) updates(this); } @override SubscriptionState build() => _build(); _$SubscriptionState _build() { _$SubscriptionState _$result; try { _$result = _$v ?? new _$SubscriptionState._(map: map.build(), list: list.build()); } catch (_) { late String _$failedField; try { _$failedField = 'map'; map.build(); _$failedField = 'list'; list.build(); } catch (e) { throw new BuiltValueNestedFieldError( r'SubscriptionState', _$failedField, e.toString()); } rethrow; } replace(_$result); return _$result; } } class _$SubscriptionUIState extends SubscriptionUIState { @override final SubscriptionEntity? editing; @override final ListUIState listUIState; @override final String? selectedId; @override final bool? forceSelected; @override final int tabIndex; @override final Completer? saveCompleter; @override final Completer? cancelCompleter; factory _$SubscriptionUIState( [void Function(SubscriptionUIStateBuilder)? updates]) => (new SubscriptionUIStateBuilder()..update(updates))._build(); _$SubscriptionUIState._( {this.editing, required this.listUIState, this.selectedId, this.forceSelected, required this.tabIndex, this.saveCompleter, this.cancelCompleter}) : super._() { BuiltValueNullFieldError.checkNotNull( listUIState, r'SubscriptionUIState', 'listUIState'); BuiltValueNullFieldError.checkNotNull( tabIndex, r'SubscriptionUIState', 'tabIndex'); } @override SubscriptionUIState rebuild( void Function(SubscriptionUIStateBuilder) updates) => (toBuilder()..update(updates)).build(); @override SubscriptionUIStateBuilder toBuilder() => new SubscriptionUIStateBuilder()..replace(this); @override bool operator ==(Object other) { if (identical(other, this)) return true; return other is SubscriptionUIState && editing == other.editing && listUIState == other.listUIState && selectedId == other.selectedId && forceSelected == other.forceSelected && tabIndex == other.tabIndex && saveCompleter == other.saveCompleter && cancelCompleter == other.cancelCompleter; } int? __hashCode; @override int get hashCode { if (__hashCode != null) return __hashCode!; var _$hash = 0; _$hash = $jc(_$hash, editing.hashCode); _$hash = $jc(_$hash, listUIState.hashCode); _$hash = $jc(_$hash, selectedId.hashCode); _$hash = $jc(_$hash, forceSelected.hashCode); _$hash = $jc(_$hash, tabIndex.hashCode); _$hash = $jc(_$hash, saveCompleter.hashCode); _$hash = $jc(_$hash, cancelCompleter.hashCode); _$hash = $jf(_$hash); return __hashCode ??= _$hash; } @override String toString() { return (newBuiltValueToStringHelper(r'SubscriptionUIState') ..add('editing', editing) ..add('listUIState', listUIState) ..add('selectedId', selectedId) ..add('forceSelected', forceSelected) ..add('tabIndex', tabIndex) ..add('saveCompleter', saveCompleter) ..add('cancelCompleter', cancelCompleter)) .toString(); } } class SubscriptionUIStateBuilder implements Builder { _$SubscriptionUIState? _$v; SubscriptionEntityBuilder? _editing; SubscriptionEntityBuilder get editing => _$this._editing ??= new SubscriptionEntityBuilder(); set editing(SubscriptionEntityBuilder? editing) => _$this._editing = editing; ListUIStateBuilder? _listUIState; ListUIStateBuilder get listUIState => _$this._listUIState ??= new ListUIStateBuilder(); set listUIState(ListUIStateBuilder? listUIState) => _$this._listUIState = listUIState; String? _selectedId; String? get selectedId => _$this._selectedId; set selectedId(String? selectedId) => _$this._selectedId = selectedId; bool? _forceSelected; bool? get forceSelected => _$this._forceSelected; set forceSelected(bool? forceSelected) => _$this._forceSelected = forceSelected; int? _tabIndex; int? get tabIndex => _$this._tabIndex; set tabIndex(int? tabIndex) => _$this._tabIndex = tabIndex; Completer? _saveCompleter; Completer? get saveCompleter => _$this._saveCompleter; set saveCompleter(Completer? saveCompleter) => _$this._saveCompleter = saveCompleter; Completer? _cancelCompleter; Completer? get cancelCompleter => _$this._cancelCompleter; set cancelCompleter(Completer? cancelCompleter) => _$this._cancelCompleter = cancelCompleter; SubscriptionUIStateBuilder(); SubscriptionUIStateBuilder get _$this { final $v = _$v; if ($v != null) { _editing = $v.editing?.toBuilder(); _listUIState = $v.listUIState.toBuilder(); _selectedId = $v.selectedId; _forceSelected = $v.forceSelected; _tabIndex = $v.tabIndex; _saveCompleter = $v.saveCompleter; _cancelCompleter = $v.cancelCompleter; _$v = null; } return this; } @override void replace(SubscriptionUIState other) { ArgumentError.checkNotNull(other, 'other'); _$v = other as _$SubscriptionUIState; } @override void update(void Function(SubscriptionUIStateBuilder)? updates) { if (updates != null) updates(this); } @override SubscriptionUIState build() => _build(); _$SubscriptionUIState _build() { _$SubscriptionUIState _$result; try { _$result = _$v ?? new _$SubscriptionUIState._( editing: _editing?.build(), listUIState: listUIState.build(), selectedId: selectedId, forceSelected: forceSelected, tabIndex: BuiltValueNullFieldError.checkNotNull( tabIndex, r'SubscriptionUIState', 'tabIndex'), saveCompleter: saveCompleter, cancelCompleter: cancelCompleter); } catch (_) { late String _$failedField; try { _$failedField = 'editing'; _editing?.build(); _$failedField = 'listUIState'; listUIState.build(); } catch (e) { throw new BuiltValueNestedFieldError( r'SubscriptionUIState', _$failedField, e.toString()); } rethrow; } replace(_$result); return _$result; } } // ignore_for_file: deprecated_member_use_from_same_package,type=lint