Create multiple entities at once.
Future<void> createAll(List<T> entities) async { for (final entity in entities) { await create(entity); } }