I would suggest initializing the variable with null:
null
MyType? myVar = null;
You can then check whether it has been set to an non-null value using:
var isSet = myVar != null;