12 lines
158 B
Dart
12 lines
158 B
Dart
// ids cannot be indexed
|
|
|
|
import 'package:isar/isar.dart';
|
|
|
|
@collection
|
|
class Model {
|
|
Id? id;
|
|
|
|
@Index(composite: [CompositeIndex('id')])
|
|
String? str;
|
|
}
|