public argumentType(name as String, defaultValue as String = "") as String:
Returns an annotation argument token kind or a default value.
| Parameter | Description |
|---|---|
name | Argument name. |
defaultValue | Returned when the argument is absent. |
Token kind captured by the compiler.
ann = Annotation("Column", {"length": "255"}, {"length": "Int"})
assert ann.argumentType("length", "") == "Int"