copyWith method

AlbumInfoSongs copyWith({
  1. List? rtUrls,
  2. List<AlbumInfoSongsAr>? ar,
  3. AlbumInfoSongsAl? al,
  4. int? st,
  5. dynamic noCopyrightRcmd,
  6. dynamic songJumpInfo,
  7. int? djId,
  8. int? no,
  9. int? fee,
  10. int? mv,
  11. int? t,
  12. int? v,
  13. String? cd,
  14. int? rtype,
  15. dynamic rurl,
  16. int? pst,
  17. List? alia,
  18. double? pop,
  19. String? rt,
  20. int? mst,
  21. int? cp,
  22. dynamic crbt,
  23. String? cf,
  24. int? dt,
  25. AlbumInfoSongsH? h,
  26. AlbumInfoSongsSq? sq,
  27. dynamic hr,
  28. AlbumInfoSongsL? l,
  29. dynamic rtUrl,
  30. int? ftype,
  31. dynamic a,
  32. AlbumInfoSongsM? m,
  33. String? name,
  34. int? id,
  35. 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;
}