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

18 lines
225 B
Dart

// null values are not supported
import 'package:isar/isar.dart';
@collection
class Model {
Id? id;
@Enumerated(EnumType.value, 'value')
late MyEnum prop;
}
enum MyEnum {
optionA;
final String? value = null;
}