there are two ways to do this. My preferred way is...
# language-proposals
b
there are two ways to do this. My preferred way is:
Copy code
if (someOptional != null) {
    // In here, it's automatically safe-unwrapped
}
1