Nullable Type (?) (Kotlin)
A nullable type is a type marked with a trailing ? (like Int? or String?) that is allowed to hold null. Without the ?, a Kotlin type can never be null.
A nullable type is a type marked with a trailing ? (like Int? or String?) that is allowed to hold null. Without the ?, a Kotlin type can never be null.