// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
part of 'simple_object.dart';
|
|
// **************************************************************************
|
// JsonSerializableGenerator
|
// **************************************************************************
|
|
SimpleObject _$SimpleObjectFromJson(Map json) {
|
return SimpleObject(json['value'] as int);
|
}
|
|
abstract class _$SimpleObjectSerializerMixin {
|
int get value;
|
Map<String, dynamic> toJson() => <String, dynamic>{'value': value};
|
}
|