Update multiple entities at once.
Future<void> updateAll(List<T> entities) async { for (final entity in entities) { await update(entity); } }