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

17 lines
216 B
Dart

// names must not be blank or start with
import 'package:isar/isar.dart';
@collection
class Model {
Id? id;
@Name('_link')
final IsarLink<Model2> link = IsarLink();
}
@collection
class Model2 {
Id? id;
}