IsarCollection<OBJ> class abstract

Constructors

IsarCollection()

Properties

hashCode int
The hash code for this object.
no setterinherited
isar Isar
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

buildQuery<T>({List<WhereClause> whereClauses = const [], bool whereDistinct = false, Sort whereSort = Sort.Asc, FilterGroup? filter, List<SortProperty> sortBy = const [], List<DistinctProperty> distinctBy = const [], int? offset, int? limit, String? property}) Query<T>
delete(int id) Future<bool>
deleteAll(List<int> ids) Future<int>
deleteAllSync(List<int> ids) int
deleteSync(int id) bool
get(int id) Future<OBJ?>
getAll(List<int> ids) Future<List<OBJ?>>
getAllSync(List<int> ids) List<OBJ?>
getSync(int id) → OBJ?
importJson(List<Map<String, dynamic>> json) Future<void>
importJsonRaw(Uint8List jsonBytes) Future<void>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
put(OBJ object) Future<void>
putAll(List<OBJ> objects) Future<void>
putAllSync(List<OBJ> objects) → void
putSync(OBJ object) → void
toString() String
A string representation of this object.
inherited
watchLazy() Stream<void>
watchObject(int id, {bool initialReturn = false}) Stream<OBJ?>
watchObjectLazy(int id) Stream<void>
where({bool distinct = false, Sort sort = Sort.Asc}) → QueryBuilder<OBJ, QWhere>

Operators

operator ==(Object other) bool
The equality operator.
inherited