iOS Swift - Local Data Persistence
You wrote this code but your app crashes at runtime:
@Model
class Task {
var title: String
init(title: String) {
self.title = title
}
}
What is the likely cause of the crash?