11 lines
124 B
Dart
11 lines
124 B
Dart
// no id property defined
|
|
|
|
import 'package:isar/isar.dart';
|
|
|
|
@collection
|
|
class Test {
|
|
late int id;
|
|
|
|
late String name;
|
|
}
|