mangayomi/packages/isar_generator/test/errors/link/late.dart
kodjomoustapha d04b89b08a +
2023-10-08 17:00:20 +01:00

15 lines
164 B
Dart

// must not be late
import 'package:isar/isar.dart';
@collection
class Model {
Id? id;
late IsarLink<Model2> link;
}
@collection
class Model2 {
Id? id;
}