type property

  1. @override
TypeAnnotationImpl? type
override

Return the type of the variables being declared, or null if no type was provided.

Implementation

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

Implementation

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