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

11 lines
129 B
Dart

// bytes must not be nullable
import 'package:isar/isar.dart';
@collection
class Model {
Id? id;
late List<byte?> prop;
}