AlbumListValue constructor

const AlbumListValue({
  1. List<AlbumController> albumControllers = const <AlbumController>[],
  2. AlbumController? currentAlbumController,
  3. FetchStatus fetchStatus = FetchStatus.fetching,
  4. String? error,
})

Implementation

const AlbumListValue({
  this.albumControllers = const <AlbumController>[],
  this.currentAlbumController,
  this.fetchStatus = FetchStatus.fetching,
  this.error,
});