copyWith method
Implementation
NewAlbumEntity copyWith({
int? total,
List<NewAlbumAlbums>? albums,
int? code,
}) {
return NewAlbumEntity()
..total = total ?? this.total
..albums = albums ?? this.albums
..code = code ?? this.code;
}