// GENERATED CODE - DO NOT MODIFY BY HAND part of 'landmark_description.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** _LandmarkDescription _$LandmarkDescriptionFromJson(Map json) => _LandmarkDescription( description: json['description'] as String, tags: (json['tags'] as List).map((e) => e as String).toList(), ); Map _$LandmarkDescriptionToJson( _LandmarkDescription instance, ) => { 'description': instance.description, 'tags': instance.tags, };