2025-03-19 19:41:35 +01:00

16 lines
164 B
Dart

// must not be late
import 'package:isar/isar.dart';
@collection
class Model {
Id? id;
late IsarLink<Model2> link;
}
@collection
class Model2 {
Id? id;
}