Concept Flow - Optional declaration with ? suffix
Declare variable with ?
Variable can hold value or nil
Use variable safely with checks
Access value if not nil
Handle nil case gracefully
This flow shows how a variable declared with ? can hold a value or nil, and how to safely use it by checking before access.