copyWith method
SongDetailSongs
copyWith({
- String? name,
- int? id,
- int? pst,
- int? t,
- List<
SongDetailSongsAr> ? ar, - List? alia,
- double? pop,
- int? st,
- String? rt,
- int? fee,
- int? v,
- dynamic crbt,
- String? cf,
- SongDetailSongsAl? al,
- int? dt,
- SongDetailSongsH? h,
- SongDetailSongsM? m,
- SongDetailSongsL? l,
- SongDetailSongsSq? sq,
- dynamic hr,
- dynamic a,
- String? cd,
- int? no,
- dynamic rtUrl,
- int? ftype,
- List? rtUrls,
- int? djId,
- int? copyright,
- int? sId,
- int? mark,
- int? originCoverType,
- dynamic originSongSimpleData,
- dynamic tagPicList,
- bool? resourceState,
- int? version,
- dynamic songJumpInfo,
- dynamic entertainmentTags,
- dynamic awardTags,
- dynamic displayTags,
- int? single,
- dynamic noCopyrightRcmd,
- int? mv,
- int? rtype,
- dynamic rurl,
- int? mst,
- int? cp,
- int? publishTime,
Implementation
SongDetailSongs copyWith({
String? name,
int? id,
int? pst,
int? t,
List<SongDetailSongsAr>? ar,
List<dynamic>? alia,
double? pop,
int? st,
String? rt,
int? fee,
int? v,
dynamic crbt,
String? cf,
SongDetailSongsAl? al,
int? dt,
SongDetailSongsH? h,
SongDetailSongsM? m,
SongDetailSongsL? l,
SongDetailSongsSq? sq,
dynamic hr,
dynamic a,
String? cd,
int? no,
dynamic rtUrl,
int? ftype,
List<dynamic>? rtUrls,
int? djId,
int? copyright,
int? sId,
int? mark,
int? originCoverType,
dynamic originSongSimpleData,
dynamic tagPicList,
bool? resourceState,
int? version,
dynamic songJumpInfo,
dynamic entertainmentTags,
dynamic awardTags,
dynamic displayTags,
int? single,
dynamic noCopyrightRcmd,
int? mv,
int? rtype,
dynamic rurl,
int? mst,
int? cp,
int? publishTime,
}) {
return SongDetailSongs()
..name = name ?? this.name
..id = id ?? this.id
..pst = pst ?? this.pst
..t = t ?? this.t
..ar = ar ?? this.ar
..alia = alia ?? this.alia
..pop = pop ?? this.pop
..st = st ?? this.st
..rt = rt ?? this.rt
..fee = fee ?? this.fee
..v = v ?? this.v
..crbt = crbt ?? this.crbt
..cf = cf ?? this.cf
..al = al ?? this.al
..dt = dt ?? this.dt
..h = h ?? this.h
..m = m ?? this.m
..l = l ?? this.l
..sq = sq ?? this.sq
..hr = hr ?? this.hr
..a = a ?? this.a
..cd = cd ?? this.cd
..no = no ?? this.no
..rtUrl = rtUrl ?? this.rtUrl
..ftype = ftype ?? this.ftype
..rtUrls = rtUrls ?? this.rtUrls
..djId = djId ?? this.djId
..copyright = copyright ?? this.copyright
..sId = sId ?? this.sId
..mark = mark ?? this.mark
..originCoverType = originCoverType ?? this.originCoverType
..originSongSimpleData = originSongSimpleData ?? this.originSongSimpleData
..tagPicList = tagPicList ?? this.tagPicList
..resourceState = resourceState ?? this.resourceState
..version = version ?? this.version
..songJumpInfo = songJumpInfo ?? this.songJumpInfo
..entertainmentTags = entertainmentTags ?? this.entertainmentTags
..awardTags = awardTags ?? this.awardTags
..displayTags = displayTags ?? this.displayTags
..single = single ?? this.single
..noCopyrightRcmd = noCopyrightRcmd ?? this.noCopyrightRcmd
..mv = mv ?? this.mv
..rtype = rtype ?? this.rtype
..rurl = rurl ?? this.rurl
..mst = mst ?? this.mst
..cp = cp ?? this.cp
..publishTime = publishTime ?? this.publishTime;
}