12 lines
159 B
Dart
12 lines
159 B
Dart
// names must not be blank or start with "_"
|
|
|
|
import 'package:isar/isar.dart';
|
|
|
|
@collection
|
|
class Model {
|
|
Id? id;
|
|
|
|
@Index(name: '_index')
|
|
String? str;
|
|
}
|