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

12 lines
157 B
Dart

// only strings and lists may be hashed
import 'package:isar/isar.dart';
@collection
class Model {
Id? id;
@Index(type: IndexType.hash)
int? val;
}