KtQuery<T> extension

Extension to return KtList instead of List for Query objects

on

Methods

exportJsonKt() Future<KtList<KtMap<String, dynamic>>>
Export the results of this query as json.
exportJsonKtSync() → KtList<KtMap<String, dynamic>>
Export the results of this query as json.
findAllKt() Future<KtList<T>>
Find all objects that match this query.
findAllKtSync() → KtList<T>
Find all objects that match this query.
watchKt({bool initialReturn = false}) Stream<KtList<T>>
Create a watcher that yiels the results of this query whenever its results have (potentially) changed.