If I define a property like ``` class Foo { ...
# announcements
b
If I define a property like
Copy code
class Foo {
        var name: String?
}
compiler says should name should be initialized, I change it to var name: String? = null, then is OK. Is there have ways to avoid = null for every nullable property?