mirror of
https://github.com/flutter/samples.git
synced 2026-06-25 23:58:44 +00:00
I got carried away with Gemini and basically rewrote CI and the release process for the new LLM reality. This work was largely completed by Gemini. - Bump all SDK versions to the current beta (3.9.0-0) - Run `flutter channel beta` - Wrote `ci_script.dart` to replace the bash scripts - Converted repository to pub workspace #2499 - Added llm.md and release.md - Added redirect for deprecated Samples Index ## Pre-launch Checklist - [x] I read the [Flutter Style Guide] _recently_, and have followed its advice. - [x] I signed the [CLA]. - [x] I read the [Contributors Guide]. - [x] I have added sample code updates to the [changelog]. - [x] I updated/added relevant documentation (doc comments with `///`).
193 lines
4.7 KiB
Dart
193 lines
4.7 KiB
Dart
// 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 'position.dart';
|
|
|
|
// **************************************************************************
|
|
// BuiltValueGenerator
|
|
// **************************************************************************
|
|
|
|
Serializer<Position> _$positionSerializer = new _$PositionSerializer();
|
|
|
|
class _$PositionSerializer implements StructuredSerializer<Position> {
|
|
@override
|
|
final Iterable<Type> types = const [Position, _$Position];
|
|
@override
|
|
final String wireName = 'Position';
|
|
|
|
@override
|
|
Iterable<Object?> serialize(
|
|
Serializers serializers,
|
|
Position object, {
|
|
FullType specifiedType = FullType.unspecified,
|
|
}) {
|
|
final result = <Object?>[
|
|
'latitude',
|
|
serializers.serialize(
|
|
object.latitude,
|
|
specifiedType: const FullType(double),
|
|
),
|
|
'longitude',
|
|
serializers.serialize(
|
|
object.longitude,
|
|
specifiedType: const FullType(double),
|
|
),
|
|
];
|
|
|
|
return result;
|
|
}
|
|
|
|
@override
|
|
Position deserialize(
|
|
Serializers serializers,
|
|
Iterable<Object?> serialized, {
|
|
FullType specifiedType = FullType.unspecified,
|
|
}) {
|
|
final result = new PositionBuilder();
|
|
|
|
final iterator = serialized.iterator;
|
|
while (iterator.moveNext()) {
|
|
final key = iterator.current! as String;
|
|
iterator.moveNext();
|
|
final Object? value = iterator.current;
|
|
switch (key) {
|
|
case 'latitude':
|
|
result.latitude =
|
|
serializers.deserialize(
|
|
value,
|
|
specifiedType: const FullType(double),
|
|
)!
|
|
as double;
|
|
break;
|
|
case 'longitude':
|
|
result.longitude =
|
|
serializers.deserialize(
|
|
value,
|
|
specifiedType: const FullType(double),
|
|
)!
|
|
as double;
|
|
break;
|
|
}
|
|
}
|
|
|
|
return result.build();
|
|
}
|
|
}
|
|
|
|
class _$Position extends Position {
|
|
@override
|
|
final double latitude;
|
|
@override
|
|
final double longitude;
|
|
|
|
factory _$Position([void Function(PositionBuilder)? updates]) =>
|
|
(new PositionBuilder()..update(updates))._build();
|
|
|
|
_$Position._({required this.latitude, required this.longitude}) : super._() {
|
|
BuiltValueNullFieldError.checkNotNull(
|
|
latitude,
|
|
r'Position',
|
|
'latitude',
|
|
);
|
|
BuiltValueNullFieldError.checkNotNull(
|
|
longitude,
|
|
r'Position',
|
|
'longitude',
|
|
);
|
|
}
|
|
|
|
@override
|
|
Position rebuild(void Function(PositionBuilder) updates) =>
|
|
(toBuilder()..update(updates)).build();
|
|
|
|
@override
|
|
PositionBuilder toBuilder() => new PositionBuilder()..replace(this);
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
if (identical(other, this)) return true;
|
|
return other is Position &&
|
|
latitude == other.latitude &&
|
|
longitude == other.longitude;
|
|
}
|
|
|
|
@override
|
|
int get hashCode {
|
|
var _$hash = 0;
|
|
_$hash = $jc(_$hash, latitude.hashCode);
|
|
_$hash = $jc(_$hash, longitude.hashCode);
|
|
_$hash = $jf(_$hash);
|
|
return _$hash;
|
|
}
|
|
|
|
@override
|
|
String toString() {
|
|
return (newBuiltValueToStringHelper(r'Position')
|
|
..add('latitude', latitude)
|
|
..add('longitude', longitude))
|
|
.toString();
|
|
}
|
|
}
|
|
|
|
class PositionBuilder implements Builder<Position, PositionBuilder> {
|
|
_$Position? _$v;
|
|
|
|
double? _latitude;
|
|
double? get latitude => _$this._latitude;
|
|
set latitude(double? latitude) => _$this._latitude = latitude;
|
|
|
|
double? _longitude;
|
|
double? get longitude => _$this._longitude;
|
|
set longitude(double? longitude) => _$this._longitude = longitude;
|
|
|
|
PositionBuilder();
|
|
|
|
PositionBuilder get _$this {
|
|
final $v = _$v;
|
|
if ($v != null) {
|
|
_latitude = $v.latitude;
|
|
_longitude = $v.longitude;
|
|
_$v = null;
|
|
}
|
|
return this;
|
|
}
|
|
|
|
@override
|
|
void replace(Position other) {
|
|
ArgumentError.checkNotNull(other, 'other');
|
|
_$v = other as _$Position;
|
|
}
|
|
|
|
@override
|
|
void update(void Function(PositionBuilder)? updates) {
|
|
if (updates != null) updates(this);
|
|
}
|
|
|
|
@override
|
|
Position build() => _build();
|
|
|
|
_$Position _build() {
|
|
final _$result =
|
|
_$v ??
|
|
new _$Position._(
|
|
latitude: BuiltValueNullFieldError.checkNotNull(
|
|
latitude,
|
|
r'Position',
|
|
'latitude',
|
|
),
|
|
longitude: BuiltValueNullFieldError.checkNotNull(
|
|
longitude,
|
|
r'Position',
|
|
'longitude',
|
|
),
|
|
);
|
|
replace(_$result);
|
|
return _$result;
|
|
}
|
|
}
|
|
|
|
// ignore_for_file: deprecated_member_use_from_same_package,type=lint
|