KtQuery<T> extension
Extension to return KtList
instead of List for Query objects
Methods
-
exportJsonKt()
→ Future<KtList<KtMap<String, dynamic>>>
-
Available on Query<T>,
provided by the KtQuery extension
Export the results of this query as json.
-
exportJsonKtSync()
→ KtList<KtMap<String, dynamic>>
-
Available on Query<T>,
provided by the KtQuery extension
Export the results of this query as json.
-
findAllKt()
→ Future<KtList<T>>
-
Available on Query<T>,
provided by the KtQuery extension
Find all objects that match this query.
-
findAllKtSync()
→ KtList<T>
-
Available on Query<T>,
provided by the KtQuery extension
Find all objects that match this query.
-
watchKt({bool initialReturn = false})
→ Stream<KtList<T>>
-
Available on Query<T>,
provided by the KtQuery extension
Create a watcher that yiels the results of this query whenever its
results have (potentially) changed.