copyWith method
Implementation
SongDetailPrivilegesFreeTrialPrivilege copyWith({
bool? resConsumable,
bool? userConsumable,
int? listenType,
int? cannotListenReason,
dynamic playReason,
dynamic freeLimitTagType,
}) {
return SongDetailPrivilegesFreeTrialPrivilege()
..resConsumable = resConsumable ?? this.resConsumable
..userConsumable = userConsumable ?? this.userConsumable
..listenType = listenType ?? this.listenType
..cannotListenReason = cannotListenReason ?? this.cannotListenReason
..playReason = playReason ?? this.playReason
..freeLimitTagType = freeLimitTagType ?? this.freeLimitTagType;
}