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