copyWith method
NewSongDataAlbum
copyWith({
- bool? paid,
- bool? onSale,
- int? picId,
- List<
NewSongDataAlbumArtists> ? artists, - String? briefDesc,
- int? publishTime,
- String? picUrl,
- String? commentThreadId,
- NewSongDataAlbumArtist? artist,
- int? copyrightId,
- String? company,
- String? subType,
- String? blurPicUrl,
- int? companyId,
- int? pic,
- int? status,
- String? description,
- List? alias,
- String? tags,
- String? name,
- int? id,
- String? type,
- int? size,
- String? picidStr,
Implementation
NewSongDataAlbum copyWith({
bool? paid,
bool? onSale,
int? picId,
List<NewSongDataAlbumArtists>? artists,
String? briefDesc,
int? publishTime,
String? picUrl,
String? commentThreadId,
NewSongDataAlbumArtist? artist,
int? copyrightId,
String? company,
String? subType,
String? blurPicUrl,
int? companyId,
int? pic,
int? status,
String? description,
List<dynamic>? alias,
String? tags,
String? name,
int? id,
String? type,
int? size,
String? picidStr,
}) {
return NewSongDataAlbum()
..paid = paid ?? this.paid
..onSale = onSale ?? this.onSale
..picId = picId ?? this.picId
..artists = artists ?? this.artists
..briefDesc = briefDesc ?? this.briefDesc
..publishTime = publishTime ?? this.publishTime
..picUrl = picUrl ?? this.picUrl
..commentThreadId = commentThreadId ?? this.commentThreadId
..artist = artist ?? this.artist
..copyrightId = copyrightId ?? this.copyrightId
..company = company ?? this.company
..subType = subType ?? this.subType
..blurPicUrl = blurPicUrl ?? this.blurPicUrl
..companyId = companyId ?? this.companyId
..pic = pic ?? this.pic
..status = status ?? this.status
..description = description ?? this.description
..alias = alias ?? this.alias
..tags = tags ?? this.tags
..name = name ?? this.name
..id = id ?? this.id
..type = type ?? this.type
..size = size ?? this.size
..picidStr = picidStr ?? this.picidStr;
}