11 lines
134 B
Dart
11 lines
134 B
Dart
// two or more properties with type "Id" defined
|
|
|
|
import 'package:isar/isar.dart';
|
|
|
|
@collection
|
|
class Test {
|
|
Id? id1;
|
|
|
|
Id? id2;
|
|
}
|