copyWith method
Implementation
NewSongEntity copyWith({
List<NewSongData>? data,
int? code,
}) {
return NewSongEntity()
..data = data ?? this.data
..code = code ?? this.code;
}
NewSongEntity copyWith({
List<NewSongData>? data,
int? code,
}) {
return NewSongEntity()
..data = data ?? this.data
..code = code ?? this.code;
}