58 lines
1.6 KiB
Dart
58 lines
1.6 KiB
Dart
// Copyright (c) 2018, Comunes Association.
|
|
|
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'yourLocation.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
YourLocation _$YourLocationFromJson(Map<String, dynamic> json) =>
|
|
new YourLocation(
|
|
id: _objectIdFromJson(json['id'] as String),
|
|
lat: (json['lat'] as num).toDouble(),
|
|
lon: (json['lon'] as num).toDouble(),
|
|
description: json['description'] as String,
|
|
distance: json['distance'] as int,
|
|
subscribed: json['subscribed'] as bool);
|
|
|
|
abstract class _$YourLocationSerializerMixin {
|
|
ObjectId get id;
|
|
double get lat;
|
|
double get lon;
|
|
String get description;
|
|
bool get subscribed;
|
|
int get distance;
|
|
Map<String, dynamic> toJson() => new _$YourLocationJsonMapWrapper(this);
|
|
}
|
|
|
|
class _$YourLocationJsonMapWrapper extends $JsonMapWrapper {
|
|
final _$YourLocationSerializerMixin _v;
|
|
_$YourLocationJsonMapWrapper(this._v);
|
|
|
|
@override
|
|
Iterable<String> get keys =>
|
|
const ['id', 'lat', 'lon', 'description', 'subscribed', 'distance'];
|
|
|
|
@override
|
|
dynamic operator [](Object key) {
|
|
if (key is String) {
|
|
switch (key) {
|
|
case 'id':
|
|
return _objectIdToJson(_v.id);
|
|
case 'lat':
|
|
return _v.lat;
|
|
case 'lon':
|
|
return _v.lon;
|
|
case 'description':
|
|
return _v.description;
|
|
case 'subscribed':
|
|
return _v.subscribed;
|
|
case 'distance':
|
|
return _v.distance;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
}
|