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