bound property

OutputType? bound
final

The type parameter's bound.

For example, this would be Bar in class Foo<T extends Bar> {}. Note that the bound itself may have generic type arguments.

Null if this has no bound. Note that this is functionally equivalent to a bound of dynamic.

Implementation

final OutputType? bound;