copyWith method
AlbumInfoEntity
copyWith({
- bool? resourceState,
- List<
AlbumInfoSongs> ? songs, - int? code,
- AlbumInfoAlbum? album,
Implementation
AlbumInfoEntity copyWith({
bool? resourceState,
List<AlbumInfoSongs>? songs,
int? code,
AlbumInfoAlbum? album,
}) {
return AlbumInfoEntity()
..resourceState = resourceState ?? this.resourceState
..songs = songs ?? this.songs
..code = code ?? this.code
..album = album ?? this.album;
}