isar_generator/test/errors/property/enum_not_annotated.dart
2025-03-19 19:41:35 +01:00

15 lines
169 B
Dart

// enum property must be annotated with @enumerated
import 'package:isar/isar.dart';
@collection
class Model {
Id? id;
late MyEnum? prop;
}
enum MyEnum {
a;
}