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

27 lines
637 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: JsonModelGenerator
// **************************************************************************
class WithEnum implements _WithEnum {
const WithEnum({this.type});
@override
final WithEnumType type;
WithEnum copyWith({WithEnumType type}) {
return new WithEnum(type: type ?? this.type);
}
bool operator ==(other) {
return other is _WithEnum && other.type == type;
}
Map<String, dynamic> toJson() {
return WithEnumSerializer.toMap(this);
}
}