parameters property

  1. @override
FormalParameterListImpl? parameters
override

Return the parameters of the function-typed parameter, or null if this is not a function-typed field formal parameter.

Implementation

@override
FormalParameterListImpl? get parameters => _parameters;
void parameters=(FormalParameterListImpl? parameters)

Implementation

set parameters(FormalParameterListImpl? parameters) {
  _parameters = _becomeParentOf(parameters);
}