scanWhere method

List<Map<String, dynamic>> scanWhere(
  1. TxnContext ctx,
  2. bool predicate(
    1. Map<String, dynamic>
    )
)

Return rows matching predicate, visible to ctx.

Implementation

List<Map<String, dynamic>> scanWhere(
    TxnContext ctx, bool Function(Map<String, dynamic>) predicate) {
  return scan(ctx).where(predicate).toList();
}