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