Query<T> class abstract

Available Extensions

Constructors

Query()

Properties

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

Methods

aggregate<R>(AggregationOp op) Future<R?>
aggregateSync<R>(AggregationOp op) → R?
count() Future<int>
countSync() int?
deleteAll() Future<int>
deleteAllSync() int
deleteFirst() Future<bool>
deleteFirstSync() bool
exportJson({bool primitiveNull = true}) Future<List<Map<String, dynamic>>>
exportJsonRaw<R>(R callback(Uint8List), {bool primitiveNull = true}) Future<R>
findAll() Future<List<T>>
findAllSync() List<T>
findFirst() Future<T?>
findFirstSync() → T?
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
watch({bool initialReturn = false}) Stream<List<T>>
watchLazy() Stream<void>

Operators

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