question property
Token?
get
question
The question mark indicating that the function type is nullable, or null
if there's no question mark, which will always be the case when the
parameter doesn't use the older style for denoting a function typed
parameter.
If the parameter is function-typed, and has the question mark, then its
function type is nullable. Having a nullable function type means that the
parameter can be null
.
Implementation
Token? get question;