bound property

  1. @override
TypeAnnotationImpl? bound
override

Return the upper bound for legal arguments, or null if there is no explicit upper bound.

Implementation

@override
TypeAnnotationImpl? get bound => _bound;
void bound=(TypeAnnotationImpl? type)

Implementation

set bound(TypeAnnotationImpl? type) {
  _bound = _becomeParentOf(type);
}