findAllKt method

Future<KtList<T>> findAllKt()

Find all objects that match this query.

Implementation

Future<KtList<T>> findAllKt() => findAll().then(
      (list) => list.toImmutableList(),
    );