public createInstance(args... as Object) as Object throws Exception:
Creates an instance of this type through reflection.
Constructor overloads are selected from both the supplied argument count and their runtime types. Exact types take precedence over compatible base types and implicit widening numeric conversions. Constructors with default trailing parameters can be called with omitted arguments.
| Parameter | Description |
|---|---|
args | Constructor arguments. |
New instance.
user = User.type.createInstance("Alice") as User