copyWith method
Implementation
SongUrlDataFreeTimeTrialPrivilege copyWith({
bool? resConsumable,
bool? userConsumable,
int? type,
int? remainTime,
}) {
return SongUrlDataFreeTimeTrialPrivilege()
..resConsumable = resConsumable ?? this.resConsumable
..userConsumable = userConsumable ?? this.userConsumable
..type = type ?? this.type
..remainTime = remainTime ?? this.remainTime;
}