iOS Swift - User Input and Forms
What is wrong with this Swift struct for form data?
struct ContactForm {
var phone: String
var email: String
init(phone: String) {
self.phone = phone
}
}