Concept Flow - Nullable types with ? suffix
Declare variable with ?
Variable can hold value or null
Check if variable is null
Handle null
Continue
This flow shows how a variable declared with ? can hold a value or null, and how the program checks and handles null before using the variable.