isar_generator/test/errors/index/invalid_name.dart
2025-03-19 19:41:35 +01:00

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;
}