mirror of https://github.com/flutter/samples.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
286 lines
8.8 KiB
286 lines
8.8 KiB
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'built_simple_object.dart';
|
|
|
|
// **************************************************************************
|
|
// BuiltValueGenerator
|
|
// **************************************************************************
|
|
|
|
Serializer<BuiltSimpleObject> _$builtSimpleObjectSerializer =
|
|
new _$BuiltSimpleObjectSerializer();
|
|
|
|
class _$BuiltSimpleObjectSerializer
|
|
implements StructuredSerializer<BuiltSimpleObject> {
|
|
@override
|
|
final Iterable<Type> types = const [BuiltSimpleObject, _$BuiltSimpleObject];
|
|
@override
|
|
final String wireName = 'BuiltSimpleObject';
|
|
|
|
@override
|
|
Iterable<Object?> serialize(Serializers serializers, BuiltSimpleObject object,
|
|
{FullType specifiedType = FullType.unspecified}) {
|
|
final result = <Object?>[];
|
|
Object? value;
|
|
value = object.aString;
|
|
if (value != null) {
|
|
result
|
|
..add('aString')
|
|
..add(serializers.serialize(value,
|
|
specifiedType: const FullType(String)));
|
|
}
|
|
value = object.anInt;
|
|
if (value != null) {
|
|
result
|
|
..add('anInt')
|
|
..add(serializers.serialize(value, specifiedType: const FullType(int)));
|
|
}
|
|
value = object.aDouble;
|
|
if (value != null) {
|
|
result
|
|
..add('aDouble')
|
|
..add(serializers.serialize(value,
|
|
specifiedType: const FullType(double)));
|
|
}
|
|
value = object.aListOfStrings;
|
|
if (value != null) {
|
|
result
|
|
..add('aListOfStrings')
|
|
..add(serializers.serialize(value,
|
|
specifiedType:
|
|
const FullType(BuiltList, const [const FullType(String)])));
|
|
}
|
|
value = object.aListOfInts;
|
|
if (value != null) {
|
|
result
|
|
..add('aListOfInts')
|
|
..add(serializers.serialize(value,
|
|
specifiedType:
|
|
const FullType(BuiltList, const [const FullType(int)])));
|
|
}
|
|
value = object.aListOfDoubles;
|
|
if (value != null) {
|
|
result
|
|
..add('aListOfDoubles')
|
|
..add(serializers.serialize(value,
|
|
specifiedType:
|
|
const FullType(BuiltList, const [const FullType(double)])));
|
|
}
|
|
return result;
|
|
}
|
|
|
|
@override
|
|
BuiltSimpleObject deserialize(
|
|
Serializers serializers, Iterable<Object?> serialized,
|
|
{FullType specifiedType = FullType.unspecified}) {
|
|
final result = new BuiltSimpleObjectBuilder();
|
|
|
|
final iterator = serialized.iterator;
|
|
while (iterator.moveNext()) {
|
|
final key = iterator.current as String;
|
|
iterator.moveNext();
|
|
final Object? value = iterator.current;
|
|
switch (key) {
|
|
case 'aString':
|
|
result.aString = serializers.deserialize(value,
|
|
specifiedType: const FullType(String)) as String;
|
|
break;
|
|
case 'anInt':
|
|
result.anInt = serializers.deserialize(value,
|
|
specifiedType: const FullType(int)) as int;
|
|
break;
|
|
case 'aDouble':
|
|
result.aDouble = serializers.deserialize(value,
|
|
specifiedType: const FullType(double)) as double;
|
|
break;
|
|
case 'aListOfStrings':
|
|
result.aListOfStrings.replace(serializers.deserialize(value,
|
|
specifiedType: const FullType(
|
|
BuiltList, const [const FullType(String)]))!
|
|
as BuiltList<Object>);
|
|
break;
|
|
case 'aListOfInts':
|
|
result.aListOfInts.replace(serializers.deserialize(value,
|
|
specifiedType:
|
|
const FullType(BuiltList, const [const FullType(int)]))!
|
|
as BuiltList<Object>);
|
|
break;
|
|
case 'aListOfDoubles':
|
|
result.aListOfDoubles.replace(serializers.deserialize(value,
|
|
specifiedType: const FullType(
|
|
BuiltList, const [const FullType(double)]))!
|
|
as BuiltList<Object>);
|
|
break;
|
|
}
|
|
}
|
|
|
|
return result.build();
|
|
}
|
|
}
|
|
|
|
class _$BuiltSimpleObject extends BuiltSimpleObject {
|
|
@override
|
|
final String? aString;
|
|
@override
|
|
final int? anInt;
|
|
@override
|
|
final double? aDouble;
|
|
@override
|
|
final BuiltList<String>? aListOfStrings;
|
|
@override
|
|
final BuiltList<int>? aListOfInts;
|
|
@override
|
|
final BuiltList<double>? aListOfDoubles;
|
|
|
|
factory _$BuiltSimpleObject(
|
|
[void Function(BuiltSimpleObjectBuilder)? updates]) =>
|
|
(new BuiltSimpleObjectBuilder()..update(updates)).build();
|
|
|
|
_$BuiltSimpleObject._(
|
|
{this.aString,
|
|
this.anInt,
|
|
this.aDouble,
|
|
this.aListOfStrings,
|
|
this.aListOfInts,
|
|
this.aListOfDoubles})
|
|
: super._();
|
|
|
|
@override
|
|
BuiltSimpleObject rebuild(void Function(BuiltSimpleObjectBuilder) updates) =>
|
|
(toBuilder()..update(updates)).build();
|
|
|
|
@override
|
|
BuiltSimpleObjectBuilder toBuilder() =>
|
|
new BuiltSimpleObjectBuilder()..replace(this);
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
if (identical(other, this)) return true;
|
|
return other is BuiltSimpleObject &&
|
|
aString == other.aString &&
|
|
anInt == other.anInt &&
|
|
aDouble == other.aDouble &&
|
|
aListOfStrings == other.aListOfStrings &&
|
|
aListOfInts == other.aListOfInts &&
|
|
aListOfDoubles == other.aListOfDoubles;
|
|
}
|
|
|
|
@override
|
|
int get hashCode {
|
|
return $jf($jc(
|
|
$jc(
|
|
$jc(
|
|
$jc($jc($jc(0, aString.hashCode), anInt.hashCode),
|
|
aDouble.hashCode),
|
|
aListOfStrings.hashCode),
|
|
aListOfInts.hashCode),
|
|
aListOfDoubles.hashCode));
|
|
}
|
|
|
|
@override
|
|
String toString() {
|
|
return (newBuiltValueToStringHelper('BuiltSimpleObject')
|
|
..add('aString', aString)
|
|
..add('anInt', anInt)
|
|
..add('aDouble', aDouble)
|
|
..add('aListOfStrings', aListOfStrings)
|
|
..add('aListOfInts', aListOfInts)
|
|
..add('aListOfDoubles', aListOfDoubles))
|
|
.toString();
|
|
}
|
|
}
|
|
|
|
class BuiltSimpleObjectBuilder
|
|
implements Builder<BuiltSimpleObject, BuiltSimpleObjectBuilder> {
|
|
_$BuiltSimpleObject? _$v;
|
|
|
|
String? _aString;
|
|
String? get aString => _$this._aString;
|
|
set aString(String? aString) => _$this._aString = aString;
|
|
|
|
int? _anInt;
|
|
int? get anInt => _$this._anInt;
|
|
set anInt(int? anInt) => _$this._anInt = anInt;
|
|
|
|
double? _aDouble;
|
|
double? get aDouble => _$this._aDouble;
|
|
set aDouble(double? aDouble) => _$this._aDouble = aDouble;
|
|
|
|
ListBuilder<String>? _aListOfStrings;
|
|
ListBuilder<String> get aListOfStrings =>
|
|
_$this._aListOfStrings ??= new ListBuilder<String>();
|
|
set aListOfStrings(ListBuilder<String>? aListOfStrings) =>
|
|
_$this._aListOfStrings = aListOfStrings;
|
|
|
|
ListBuilder<int>? _aListOfInts;
|
|
ListBuilder<int> get aListOfInts =>
|
|
_$this._aListOfInts ??= new ListBuilder<int>();
|
|
set aListOfInts(ListBuilder<int>? aListOfInts) =>
|
|
_$this._aListOfInts = aListOfInts;
|
|
|
|
ListBuilder<double>? _aListOfDoubles;
|
|
ListBuilder<double> get aListOfDoubles =>
|
|
_$this._aListOfDoubles ??= new ListBuilder<double>();
|
|
set aListOfDoubles(ListBuilder<double>? aListOfDoubles) =>
|
|
_$this._aListOfDoubles = aListOfDoubles;
|
|
|
|
BuiltSimpleObjectBuilder();
|
|
|
|
BuiltSimpleObjectBuilder get _$this {
|
|
final $v = _$v;
|
|
if ($v != null) {
|
|
_aString = $v.aString;
|
|
_anInt = $v.anInt;
|
|
_aDouble = $v.aDouble;
|
|
_aListOfStrings = $v.aListOfStrings?.toBuilder();
|
|
_aListOfInts = $v.aListOfInts?.toBuilder();
|
|
_aListOfDoubles = $v.aListOfDoubles?.toBuilder();
|
|
_$v = null;
|
|
}
|
|
return this;
|
|
}
|
|
|
|
@override
|
|
void replace(BuiltSimpleObject other) {
|
|
ArgumentError.checkNotNull(other, 'other');
|
|
_$v = other as _$BuiltSimpleObject;
|
|
}
|
|
|
|
@override
|
|
void update(void Function(BuiltSimpleObjectBuilder)? updates) {
|
|
if (updates != null) updates(this);
|
|
}
|
|
|
|
@override
|
|
_$BuiltSimpleObject build() {
|
|
_$BuiltSimpleObject _$result;
|
|
try {
|
|
_$result = _$v ??
|
|
new _$BuiltSimpleObject._(
|
|
aString: aString,
|
|
anInt: anInt,
|
|
aDouble: aDouble,
|
|
aListOfStrings: _aListOfStrings?.build(),
|
|
aListOfInts: _aListOfInts?.build(),
|
|
aListOfDoubles: _aListOfDoubles?.build());
|
|
} catch (_) {
|
|
late String _$failedField;
|
|
try {
|
|
_$failedField = 'aListOfStrings';
|
|
_aListOfStrings?.build();
|
|
_$failedField = 'aListOfInts';
|
|
_aListOfInts?.build();
|
|
_$failedField = 'aListOfDoubles';
|
|
_aListOfDoubles?.build();
|
|
} catch (e) {
|
|
throw new BuiltValueNestedFieldError(
|
|
'BuiltSimpleObject', _$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
|