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