mirror of https://github.com/flutter/samples.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.0 KiB
30 lines
1.0 KiB
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'destination.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
_$DestinationImpl _$$DestinationImplFromJson(Map<String, dynamic> json) =>
|
|
_$DestinationImpl(
|
|
ref: json['ref'] as String,
|
|
name: json['name'] as String,
|
|
country: json['country'] as String,
|
|
continent: json['continent'] as String,
|
|
knownFor: json['knownFor'] as String,
|
|
tags: (json['tags'] as List<dynamic>).map((e) => e as String).toList(),
|
|
imageUrl: json['imageUrl'] as String,
|
|
);
|
|
|
|
Map<String, dynamic> _$$DestinationImplToJson(_$DestinationImpl instance) =>
|
|
<String, dynamic>{
|
|
'ref': instance.ref,
|
|
'name': instance.name,
|
|
'country': instance.country,
|
|
'continent': instance.continent,
|
|
'knownFor': instance.knownFor,
|
|
'tags': instance.tags,
|
|
'imageUrl': instance.imageUrl,
|
|
};
|