accessor property
Allows you to override the default collection accessor.
Example:
@Collection(accessor: 'col')
class MyCol {
Id? id;
}
// access collection using: isar.col
Implementation
final String? accessor;
Allows you to override the default collection accessor.
Example:
@Collection(accessor: 'col')
class MyCol {
Id? id;
}
// access collection using: isar.col
final String? accessor;