copyWith method
AlbumInfoSongs
copyWith({
- List? rtUrls,
- List<
AlbumInfoSongsAr> ? ar, - AlbumInfoSongsAl? al,
- int? st,
- dynamic noCopyrightRcmd,
- dynamic songJumpInfo,
- int? djId,
- int? no,
- int? fee,
- int? mv,
- int? t,
- int? v,
- String? cd,
- int? rtype,
- dynamic rurl,
- int? pst,
- List? alia,
- double? pop,
- String? rt,
- int? mst,
- int? cp,
- dynamic crbt,
- String? cf,
- int? dt,
- AlbumInfoSongsH? h,
- AlbumInfoSongsSq? sq,
- dynamic hr,
- AlbumInfoSongsL? l,
- dynamic rtUrl,
- int? ftype,
- dynamic a,
- AlbumInfoSongsM? m,
- String? name,
- int? id,
- AlbumInfoSongsPrivilege? privilege,
Implementation
AlbumInfoSongs copyWith({
List<dynamic>? rtUrls,
List<AlbumInfoSongsAr>? ar,
AlbumInfoSongsAl? al,
int? st,
dynamic noCopyrightRcmd,
dynamic songJumpInfo,
int? djId,
int? no,
int? fee,
int? mv,
int? t,
int? v,
String? cd,
int? rtype,
dynamic rurl,
int? pst,
List<dynamic>? alia,
double? pop,
String? rt,
int? mst,
int? cp,
dynamic crbt,
String? cf,
int? dt,
AlbumInfoSongsH? h,
AlbumInfoSongsSq? sq,
dynamic hr,
AlbumInfoSongsL? l,
dynamic rtUrl,
int? ftype,
dynamic a,
AlbumInfoSongsM? m,
String? name,
int? id,
AlbumInfoSongsPrivilege? privilege,
}) {
return AlbumInfoSongs()
..rtUrls = rtUrls ?? this.rtUrls
..ar = ar ?? this.ar
..al = al ?? this.al
..st = st ?? this.st
..noCopyrightRcmd = noCopyrightRcmd ?? this.noCopyrightRcmd
..songJumpInfo = songJumpInfo ?? this.songJumpInfo
..djId = djId ?? this.djId
..no = no ?? this.no
..fee = fee ?? this.fee
..mv = mv ?? this.mv
..t = t ?? this.t
..v = v ?? this.v
..cd = cd ?? this.cd
..rtype = rtype ?? this.rtype
..rurl = rurl ?? this.rurl
..pst = pst ?? this.pst
..alia = alia ?? this.alia
..pop = pop ?? this.pop
..rt = rt ?? this.rt
..mst = mst ?? this.mst
..cp = cp ?? this.cp
..crbt = crbt ?? this.crbt
..cf = cf ?? this.cf
..dt = dt ?? this.dt
..h = h ?? this.h
..sq = sq ?? this.sq
..hr = hr ?? this.hr
..l = l ?? this.l
..rtUrl = rtUrl ?? this.rtUrl
..ftype = ftype ?? this.ftype
..a = a ?? this.a
..m = m ?? this.m
..name = name ?? this.name
..id = id ?? this.id
..privilege = privilege ?? this.privilege;
}