How do you indicate that a string might be null?
string(null) myVariable Official documentation: nullable value types
string(null) myVariable
string myVariable = null
string? myVariable
A string cannot be nullable.