platform/angel_serialize_generator/test/models/with_enum.serializer.g.dart

28 lines
755 B
Dart
Raw Normal View History

2018-06-27 05:36:57 +00:00
// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'with_enum.dart';
// **************************************************************************
// Generator: SerializerGenerator
// **************************************************************************
abstract class WithEnumSerializer {
static WithEnum fromMap(Map map) {
return new WithEnum(
type: map['type'] is WithEnumType
? map['type']
: (map['type'] is int ? WithEnumType.values[map['type']] : null));
}
static Map<String, dynamic> toMap(WithEnum model) {
return {
'type':
model.type == null ? null : WithEnumType.values.indexOf(model.type)
};
}
}
abstract class WithEnumFields {
static const String type = 'type';
}