Method createAll but add a list of entries
@override Future createAll(List<T?> items) async { return await Future.forEach( items, (dynamic item) async => await create(item)); }