15 lines
171 B
Dart
15 lines
171 B
Dart
// objects may not be indexed
|
|
|
|
import 'package:isar/isar.dart';
|
|
|
|
@collection
|
|
class Model {
|
|
Id? id;
|
|
|
|
@Index()
|
|
EmbeddedModel? obj;
|
|
}
|
|
|
|
@embedded
|
|
class EmbeddedModel {}
|