type property

  1. @override
TypeAnnotationImpl type
override

Return the type being defined by the alias.

Implementation

@override
TypeAnnotationImpl get type => _type;
void type=(TypeAnnotationImpl typeAnnotation)

Set the type being defined by the alias to the given TypeAnnotation.

Implementation

set type(TypeAnnotationImpl typeAnnotation) {
  _type = _becomeParentOf(typeAnnotation);
}