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