findRows method

List<CyberDataRow> findRows(
  1. bool predicate(
    1. CyberDataRow
    )
)

Implementation

List<CyberDataRow> findRows(bool Function(CyberDataRow) predicate) {
  return _rows.where(predicate).toList();
}