// GENERATED CODE - DO NOT MODIFY BY HAND part of 'location.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** _$_Location _$$_LocationFromJson(Map json) => _$_Location( latitude: (json['latitude'] as num?)?.toDouble(), longitude: (json['longitude'] as num?)?.toDouble(), ); Map _$$_LocationToJson(_$_Location instance) => { 'latitude': instance.latitude, 'longitude': instance.longitude, };