typeArguments property
The generic type arguments of T, if not fully specified by T itself.
Each element must be one of the following types:
- Type: for types (e.g.
String) - Typed: for a parameterized type (e.g.
Typed<List<int>>()) - Symbol: for a type parameter on the host component (e.g.
#T)
In general this field is only needed if the type is parameterized by a
type parameter of host component. Otherwise the type can be fully
specified by T itself.
Implementation
final List<Object>? typeArguments;