AlbumValue constructor

const AlbumValue({
  1. AssetPathEntity? path,
  2. AssetEntity? firstAsset,
  3. List<AssetEntity> assets = const <AssetEntity>[],
  4. int assetCount = 0,
  5. FetchStatus fetchStatus = FetchStatus.fetching,
  6. String? error,
})

Implementation

const AlbumValue({
  this.path,
  this.firstAsset,
  this.assets = const <AssetEntity>[],
  this.assetCount = 0,
  this.fetchStatus = FetchStatus.fetching,
  this.error,
});