// GENERATED CODE - DO NOT MODIFY BY HAND part of 'group_state.dart'; // ************************************************************************** // BuiltValueGenerator // ************************************************************************** Serializer _$groupStateSerializer = new _$GroupStateSerializer(); Serializer _$groupUIStateSerializer = new _$GroupUIStateSerializer(); class _$GroupStateSerializer implements StructuredSerializer { @override final Iterable types = const [GroupState, _$GroupState]; @override final String wireName = 'GroupState'; @override Iterable serialize(Serializers serializers, GroupState object, {FullType specifiedType = FullType.unspecified}) { final result = [ 'map', serializers.serialize(object.map, specifiedType: const FullType(BuiltMap, const [const FullType(String), const FullType(GroupEntity)])), 'list', serializers.serialize(object.list, specifiedType: const FullType(BuiltList, const [const FullType(String)])), ]; if (object.lastUpdated != null) { result ..add('lastUpdated') ..add(serializers.serialize(object.lastUpdated, specifiedType: const FullType(int))); } return result; } @override GroupState deserialize(Serializers serializers, Iterable serialized, {FullType specifiedType = FullType.unspecified}) { final result = new GroupStateBuilder(); final iterator = serialized.iterator; while (iterator.moveNext()) { final key = iterator.current as String; iterator.moveNext(); final dynamic value = iterator.current; switch (key) { case 'lastUpdated': result.lastUpdated = serializers.deserialize(value, specifiedType: const FullType(int)) as int; break; case 'map': result.map.replace(serializers.deserialize(value, specifiedType: const FullType(BuiltMap, const [ const FullType(String), const FullType(GroupEntity) ])) as BuiltMap); break; case 'list': result.list.replace(serializers.deserialize(value, specifiedType: const FullType(BuiltList, const [const FullType(String)])) as BuiltList); break; } } return result.build(); } } class _$GroupUIStateSerializer implements StructuredSerializer { @override final Iterable types = const [GroupUIState, _$GroupUIState]; @override final String wireName = 'GroupUIState'; @override Iterable serialize(Serializers serializers, GroupUIState object, {FullType specifiedType = FullType.unspecified}) { final result = [ 'listUIState', serializers.serialize(object.listUIState, specifiedType: const FullType(ListUIState)), ]; if (object.editing != null) { result ..add('editing') ..add(serializers.serialize(object.editing, specifiedType: const FullType(GroupEntity))); } if (object.selectedId != null) { result ..add('selectedId') ..add(serializers.serialize(object.selectedId, specifiedType: const FullType(String))); } return result; } @override GroupUIState deserialize(Serializers serializers, Iterable serialized, {FullType specifiedType = FullType.unspecified}) { final result = new GroupUIStateBuilder(); final iterator = serialized.iterator; while (iterator.moveNext()) { final key = iterator.current as String; iterator.moveNext(); final dynamic value = iterator.current; switch (key) { case 'editing': result.editing.replace(serializers.deserialize(value, specifiedType: const FullType(GroupEntity)) as GroupEntity); 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; } } return result.build(); } } class _$GroupState extends GroupState { @override final int lastUpdated; @override final BuiltMap map; @override final BuiltList list; factory _$GroupState([void Function(GroupStateBuilder) updates]) => (new GroupStateBuilder()..update(updates)).build(); _$GroupState._({this.lastUpdated, this.map, this.list}) : super._() { if (map == null) { throw new BuiltValueNullFieldError('GroupState', 'map'); } if (list == null) { throw new BuiltValueNullFieldError('GroupState', 'list'); } } @override GroupState rebuild(void Function(GroupStateBuilder) updates) => (toBuilder()..update(updates)).build(); @override GroupStateBuilder toBuilder() => new GroupStateBuilder()..replace(this); @override bool operator ==(Object other) { if (identical(other, this)) return true; return other is GroupState && lastUpdated == other.lastUpdated && map == other.map && list == other.list; } @override int get hashCode { return $jf( $jc($jc($jc(0, lastUpdated.hashCode), map.hashCode), list.hashCode)); } @override String toString() { return (newBuiltValueToStringHelper('GroupState') ..add('lastUpdated', lastUpdated) ..add('map', map) ..add('list', list)) .toString(); } } class GroupStateBuilder implements Builder { _$GroupState _$v; int _lastUpdated; int get lastUpdated => _$this._lastUpdated; set lastUpdated(int lastUpdated) => _$this._lastUpdated = lastUpdated; 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; GroupStateBuilder(); GroupStateBuilder get _$this { if (_$v != null) { _lastUpdated = _$v.lastUpdated; _map = _$v.map?.toBuilder(); _list = _$v.list?.toBuilder(); _$v = null; } return this; } @override void replace(GroupState other) { if (other == null) { throw new ArgumentError.notNull('other'); } _$v = other as _$GroupState; } @override void update(void Function(GroupStateBuilder) updates) { if (updates != null) updates(this); } @override _$GroupState build() { _$GroupState _$result; try { _$result = _$v ?? new _$GroupState._( lastUpdated: lastUpdated, map: map.build(), list: list.build()); } catch (_) { String _$failedField; try { _$failedField = 'map'; map.build(); _$failedField = 'list'; list.build(); } catch (e) { throw new BuiltValueNestedFieldError( 'GroupState', _$failedField, e.toString()); } rethrow; } replace(_$result); return _$result; } } class _$GroupUIState extends GroupUIState { @override final GroupEntity editing; @override final ListUIState listUIState; @override final String selectedId; @override final Completer saveCompleter; @override final Completer cancelCompleter; factory _$GroupUIState([void Function(GroupUIStateBuilder) updates]) => (new GroupUIStateBuilder()..update(updates)).build(); _$GroupUIState._( {this.editing, this.listUIState, this.selectedId, this.saveCompleter, this.cancelCompleter}) : super._() { if (listUIState == null) { throw new BuiltValueNullFieldError('GroupUIState', 'listUIState'); } } @override GroupUIState rebuild(void Function(GroupUIStateBuilder) updates) => (toBuilder()..update(updates)).build(); @override GroupUIStateBuilder toBuilder() => new GroupUIStateBuilder()..replace(this); @override bool operator ==(Object other) { if (identical(other, this)) return true; return other is GroupUIState && editing == other.editing && listUIState == other.listUIState && selectedId == other.selectedId && saveCompleter == other.saveCompleter && cancelCompleter == other.cancelCompleter; } @override int get hashCode { return $jf($jc( $jc( $jc($jc($jc(0, editing.hashCode), listUIState.hashCode), selectedId.hashCode), saveCompleter.hashCode), cancelCompleter.hashCode)); } @override String toString() { return (newBuiltValueToStringHelper('GroupUIState') ..add('editing', editing) ..add('listUIState', listUIState) ..add('selectedId', selectedId) ..add('saveCompleter', saveCompleter) ..add('cancelCompleter', cancelCompleter)) .toString(); } } class GroupUIStateBuilder implements Builder { _$GroupUIState _$v; GroupEntityBuilder _editing; GroupEntityBuilder get editing => _$this._editing ??= new GroupEntityBuilder(); set editing(GroupEntityBuilder 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; 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; GroupUIStateBuilder(); GroupUIStateBuilder get _$this { if (_$v != null) { _editing = _$v.editing?.toBuilder(); _listUIState = _$v.listUIState?.toBuilder(); _selectedId = _$v.selectedId; _saveCompleter = _$v.saveCompleter; _cancelCompleter = _$v.cancelCompleter; _$v = null; } return this; } @override void replace(GroupUIState other) { if (other == null) { throw new ArgumentError.notNull('other'); } _$v = other as _$GroupUIState; } @override void update(void Function(GroupUIStateBuilder) updates) { if (updates != null) updates(this); } @override _$GroupUIState build() { _$GroupUIState _$result; try { _$result = _$v ?? new _$GroupUIState._( editing: _editing?.build(), listUIState: listUIState.build(), selectedId: selectedId, saveCompleter: saveCompleter, cancelCompleter: cancelCompleter); } catch (_) { String _$failedField; try { _$failedField = 'editing'; _editing?.build(); _$failedField = 'listUIState'; listUIState.build(); } catch (e) { throw new BuiltValueNestedFieldError( 'GroupUIState', _$failedField, e.toString()); } rethrow; } replace(_$result); return _$result; } } // ignore_for_file: always_put_control_body_on_new_line,always_specify_types,annotate_overrides,avoid_annotating_with_dynamic,avoid_as,avoid_catches_without_on_clauses,avoid_returning_this,lines_longer_than_80_chars,omit_local_variable_types,prefer_expression_function_bodies,sort_constructors_first,test_types_in_equals,unnecessary_const,unnecessary_new