typeParameters property

  1. @override
TypeParameterListImpl? typeParameters
override

Return the type parameters for the extension, or null if the extension does not have any type parameters.

Implementation

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

Implementation

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