copyWith method
Implementation
TopArtistEntity copyWith({
int? code,
bool? more,
List<TopArtistArtists>? artists,
}) {
return TopArtistEntity()
..code = code ?? this.code
..more = more ?? this.more
..artists = artists ?? this.artists;
}