mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 13:58:47 +00:00
Compass app (#2446)
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
// 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,
|
||||
};
|
||||
Reference in New Issue
Block a user