// Copyright 2019 The Flutter team. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // GENERATED CODE - DO NOT MODIFY BY HAND part of 'links.dart'; // ************************************************************************** // BuiltValueGenerator // ************************************************************************** Serializer _$linksSerializer = new _$LinksSerializer(); class _$LinksSerializer implements StructuredSerializer { @override final Iterable types = const [Links, _$Links]; @override final String wireName = 'Links'; @override Iterable serialize(Serializers serializers, Links object, {FullType specifiedType = FullType.unspecified}) { final result = []; Object? value; value = object.self; if (value != null) { result ..add('self') ..add(serializers.serialize(value, specifiedType: const FullType(String))); } value = object.html; if (value != null) { result ..add('html') ..add(serializers.serialize(value, specifiedType: const FullType(String))); } value = object.download; if (value != null) { result ..add('download') ..add(serializers.serialize(value, specifiedType: const FullType(String))); } value = object.downloadLocation; if (value != null) { result ..add('download_location') ..add(serializers.serialize(value, specifiedType: const FullType(String))); } return result; } @override Links deserialize(Serializers serializers, Iterable serialized, {FullType specifiedType = FullType.unspecified}) { final result = new LinksBuilder(); final iterator = serialized.iterator; while (iterator.moveNext()) { final key = iterator.current! as String; iterator.moveNext(); final Object? value = iterator.current; switch (key) { case 'self': result.self = serializers.deserialize(value, specifiedType: const FullType(String)) as String?; break; case 'html': result.html = serializers.deserialize(value, specifiedType: const FullType(String)) as String?; break; case 'download': result.download = serializers.deserialize(value, specifiedType: const FullType(String)) as String?; break; case 'download_location': result.downloadLocation = serializers.deserialize(value, specifiedType: const FullType(String)) as String?; break; } } return result.build(); } } class _$Links extends Links { @override final String? self; @override final String? html; @override final String? download; @override final String? downloadLocation; factory _$Links([void Function(LinksBuilder)? updates]) => (new LinksBuilder()..update(updates))._build(); _$Links._({this.self, this.html, this.download, this.downloadLocation}) : super._(); @override Links rebuild(void Function(LinksBuilder) updates) => (toBuilder()..update(updates)).build(); @override LinksBuilder toBuilder() => new LinksBuilder()..replace(this); @override bool operator ==(Object other) { if (identical(other, this)) return true; return other is Links && self == other.self && html == other.html && download == other.download && downloadLocation == other.downloadLocation; } @override int get hashCode { var _$hash = 0; _$hash = $jc(_$hash, self.hashCode); _$hash = $jc(_$hash, html.hashCode); _$hash = $jc(_$hash, download.hashCode); _$hash = $jc(_$hash, downloadLocation.hashCode); _$hash = $jf(_$hash); return _$hash; } @override String toString() { return (newBuiltValueToStringHelper(r'Links') ..add('self', self) ..add('html', html) ..add('download', download) ..add('downloadLocation', downloadLocation)) .toString(); } } class LinksBuilder implements Builder { _$Links? _$v; String? _self; String? get self => _$this._self; set self(String? self) => _$this._self = self; String? _html; String? get html => _$this._html; set html(String? html) => _$this._html = html; String? _download; String? get download => _$this._download; set download(String? download) => _$this._download = download; String? _downloadLocation; String? get downloadLocation => _$this._downloadLocation; set downloadLocation(String? downloadLocation) => _$this._downloadLocation = downloadLocation; LinksBuilder(); LinksBuilder get _$this { final $v = _$v; if ($v != null) { _self = $v.self; _html = $v.html; _download = $v.download; _downloadLocation = $v.downloadLocation; _$v = null; } return this; } @override void replace(Links other) { ArgumentError.checkNotNull(other, 'other'); _$v = other as _$Links; } @override void update(void Function(LinksBuilder)? updates) { if (updates != null) updates(this); } @override Links build() => _build(); _$Links _build() { final _$result = _$v ?? new _$Links._( self: self, html: html, download: download, downloadLocation: downloadLocation); replace(_$result); return _$result; } } // ignore_for_file: deprecated_member_use_from_same_package,type=lint