public Parameter(name as String, type as Type, annotations as IList<Annotation> = []):
Builds parameter metadata.
| Parameter | Description |
|---|---|
name | Parameter name. |
type | Parameter type metadata. |
annotations | Parameter annotations. |
param = Parameter("id", Int.type, [])
assert param.annotations.size == 0