loadAssets method

Future loadAssets(
  1. AssetPathEntity selectedAlbum
)

Implementation

Future loadAssets(AssetPathEntity selectedAlbum) async {
  List<AssetEntity> assetsList = await selectedAlbum.getAssetListRange(
      start: 0, end: await selectedAlbum.assetCountAsync);
  return assetsList;
}