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.
43 lines
1.5 KiB
43 lines
1.5 KiB
// Copyright 2018 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'serializable_simple_object.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
SerializableSimpleObject _$SerializableSimpleObjectFromJson(
|
|
Map<String, dynamic> json) =>
|
|
new SerializableSimpleObject(
|
|
aString: json['aString'] as String,
|
|
anInt: json['anInt'] as int,
|
|
aDouble: (json['aDouble'] as num)?.toDouble(),
|
|
aListOfStrings:
|
|
(json['aListOfStrings'] as List)?.map((e) => e as String)?.toList(),
|
|
aListOfInts:
|
|
(json['aListOfInts'] as List)?.map((e) => e as int)?.toList(),
|
|
aListOfDoubles: (json['aListOfDoubles'] as List)
|
|
?.map((e) => (e as num)?.toDouble())
|
|
?.toList());
|
|
|
|
abstract class _$SerializableSimpleObjectSerializerMixin {
|
|
String get aString;
|
|
int get anInt;
|
|
double get aDouble;
|
|
List<String> get aListOfStrings;
|
|
List<int> get aListOfInts;
|
|
List<double> get aListOfDoubles;
|
|
Map<String, dynamic> toJson() => <String, dynamic>{
|
|
'aString': aString,
|
|
'anInt': anInt,
|
|
'aDouble': aDouble,
|
|
'aListOfStrings': aListOfStrings,
|
|
'aListOfInts': aListOfInts,
|
|
'aListOfDoubles': aListOfDoubles
|
|
};
|
|
}
|