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