iOS Swift - Local Data Persistence
Identify the error in this model definition:
@Model class Product {
var name: String
var price: Double
func discount() -> Double {
return price * 0.9
}
}