copyWith method
Implementation
RecommendSongEntity copyWith({
int? code,
RecommendSongData? data,
}) {
return RecommendSongEntity()
..code = code ?? this.code
..data = data ?? this.data;
}
RecommendSongEntity copyWith({
int? code,
RecommendSongData? data,
}) {
return RecommendSongEntity()
..code = code ?? this.code
..data = data ?? this.data;
}