copyWith method
SongDetailEntity
copyWith({
- List<
SongDetailSongs> ? songs, - List<
SongDetailPrivileges> ? privileges, - int? code,
Implementation
SongDetailEntity copyWith({
List<SongDetailSongs>? songs,
List<SongDetailPrivileges>? privileges,
int? code,
}) {
return SongDetailEntity()
..songs = songs ?? this.songs
..privileges = privileges ?? this.privileges
..code = code ?? this.code;
}