copyWith method
PlaylistDetailPrivileges
copyWith({
- int? id,
- int? fee,
- int? payed,
- int? realPayed,
- int? st,
- int? pl,
- int? dl,
- int? sp,
- int? cp,
- int? subp,
- bool? cs,
- int? maxbr,
- int? fl,
- dynamic pc,
- bool? toast,
- int? flag,
- bool? paidBigBang,
- bool? preSell,
- int? playMaxbr,
- int? downloadMaxbr,
- String? maxBrLevel,
- String? playMaxBrLevel,
- String? downloadMaxBrLevel,
- String? plLevel,
- String? dlLevel,
- String? flLevel,
- dynamic rscl,
- PlaylistDetailPrivilegesFreeTrialPrivilege? freeTrialPrivilege,
- int? rightSource,
- List<
PlaylistDetailPrivilegesChargeInfoList> ? chargeInfoList, - int? code,
- dynamic message,
- dynamic plLevels,
- dynamic dlLevels,
Implementation
PlaylistDetailPrivileges copyWith({
int? id,
int? fee,
int? payed,
int? realPayed,
int? st,
int? pl,
int? dl,
int? sp,
int? cp,
int? subp,
bool? cs,
int? maxbr,
int? fl,
dynamic pc,
bool? toast,
int? flag,
bool? paidBigBang,
bool? preSell,
int? playMaxbr,
int? downloadMaxbr,
String? maxBrLevel,
String? playMaxBrLevel,
String? downloadMaxBrLevel,
String? plLevel,
String? dlLevel,
String? flLevel,
dynamic rscl,
PlaylistDetailPrivilegesFreeTrialPrivilege? freeTrialPrivilege,
int? rightSource,
List<PlaylistDetailPrivilegesChargeInfoList>? chargeInfoList,
int? code,
dynamic message,
dynamic plLevels,
dynamic dlLevels,
}) {
return PlaylistDetailPrivileges()
..id = id ?? this.id
..fee = fee ?? this.fee
..payed = payed ?? this.payed
..realPayed = realPayed ?? this.realPayed
..st = st ?? this.st
..pl = pl ?? this.pl
..dl = dl ?? this.dl
..sp = sp ?? this.sp
..cp = cp ?? this.cp
..subp = subp ?? this.subp
..cs = cs ?? this.cs
..maxbr = maxbr ?? this.maxbr
..fl = fl ?? this.fl
..pc = pc ?? this.pc
..toast = toast ?? this.toast
..flag = flag ?? this.flag
..paidBigBang = paidBigBang ?? this.paidBigBang
..preSell = preSell ?? this.preSell
..playMaxbr = playMaxbr ?? this.playMaxbr
..downloadMaxbr = downloadMaxbr ?? this.downloadMaxbr
..maxBrLevel = maxBrLevel ?? this.maxBrLevel
..playMaxBrLevel = playMaxBrLevel ?? this.playMaxBrLevel
..downloadMaxBrLevel = downloadMaxBrLevel ?? this.downloadMaxBrLevel
..plLevel = plLevel ?? this.plLevel
..dlLevel = dlLevel ?? this.dlLevel
..flLevel = flLevel ?? this.flLevel
..rscl = rscl ?? this.rscl
..freeTrialPrivilege = freeTrialPrivilege ?? this.freeTrialPrivilege
..rightSource = rightSource ?? this.rightSource
..chargeInfoList = chargeInfoList ?? this.chargeInfoList
..code = code ?? this.code
..message = message ?? this.message
..plLevels = plLevels ?? this.plLevels
..dlLevels = dlLevels ?? this.dlLevels;
}