scanWhere method
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();
}
Return rows matching predicate, visible to ctx.
List<Map<String, dynamic>> scanWhere(
TxnContext ctx, bool Function(Map<String, dynamic>) predicate) {
return scan(ctx).where(predicate).toList();
}