Update multiple entities on the remote data source.
Future<void> updateAll(List<T> entities) async { for (final entity in entities) { await update(entity); } }