getWhere<Y> abstract method

Future<List<Y>?> getWhere<Y>(
  1. String collection,
  2. bool predicate(
    1. Y key
    )
)

Implementation

Future<List<Y>?> getWhere<Y>(
    String collection, bool Function(Y key) predicate);