example1 method
Implementation
Future<AlbumEntryModel> example1() async {
var medium = await PlatformMediumHelper(app, memberId,
PrivilegeLevelRequiredSimple.noPrivilegeRequiredSimple)
.createThumbnailUploadPhotoAsset(
newRandomKey(), examplePhoto1AssetPath);
return AlbumEntryModel(
documentID: newRandomKey(), name: 'example 1', medium: medium);
}