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