example2 method

Future<AlbumEntryModel> example2()

Implementation

Future<AlbumEntryModel> example2() async {
  return AlbumEntryModel(
      documentID: newRandomKey(),
      name: 'example 2',
      medium: await PlatformMediumHelper(app, memberId,
              PrivilegeLevelRequiredSimple.noPrivilegeRequiredSimple)
          .createThumbnailUploadPhotoAsset(
              newRandomKey(), examplePhoto2AssetPath));
}