parameters property

  1. @override
FormalParameterListImpl? parameters
override

Return the parameters associated with the method, or null if this method declares a getter.

Implementation

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

Implementation

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