typeParameters property

  1. @override
TypeParameterListImpl? typeParameters
override

Return the type parameters associated with this method, or null if this method is not a generic method.

Implementation

@override
TypeParameterListImpl? get typeParameters => _typeParameters;
void typeParameters=(TypeParameterListImpl? typeParameters)

Implementation

set typeParameters(TypeParameterListImpl? typeParameters) {
  _typeParameters = _becomeParentOf(typeParameters);
}