Hydrate many rows into models (no query).
List<T> hydrateMany(List<Map<String, dynamic>> rows) { return rows.map((row) => fromMap(row)).toList(); }