16 lines
164 B
Dart
16 lines
164 B
Dart
// must not be nullable
|
|
|
|
import 'package:isar/isar.dart';
|
|
|
|
@collection
|
|
class Model {
|
|
Id? id;
|
|
|
|
IsarLink<Model2>? link;
|
|
}
|
|
|
|
@collection
|
|
class Model2 {
|
|
Id? id;
|
|
}
|