platform/angel_serialize_generator/test/models/with_enum.dart
2018-06-27 01:45:46 -04:00

13 lines
317 B
Dart

import 'package:angel_serialize/angel_serialize.dart';
import 'package:collection/collection.dart';
part 'with_enum.g.dart';
part 'with_enum.serializer.g.dart';
@Serializable(autoIdAndDateFields: false)
abstract class _WithEnum {
WithEnumType get type;
List<int> get finalList;
}
enum WithEnumType { a, b, c }