copyWith method
Implementation
SongUrlDataFreeTrialPrivilege copyWith({
bool? resConsumable,
bool? userConsumable,
}) {
return SongUrlDataFreeTrialPrivilege()
..resConsumable = resConsumable ?? this.resConsumable
..userConsumable = userConsumable ?? this.userConsumable;
}