I have a class ScanItem defined as follows:
class ScanItem {
    let title: String
    let content: String
    init(title: String, content: String) {
        self.title = title
        self.content = content
    }
}
I often need a default object of this class. I know I can pass default value to each variable of the class, but my question is: is there a mean to create default instance of this class, that could be used like this:
let newScan = ScanItem.defaultInstance
 
    