numParamsVaries method

  1. @override
bool numParamsVaries()
override

Gets whether the number of accepted parameters varies.

That means that the function does accept an undefined amount of parameters.

Returns true if the number of accepted parameters varies.

Implementation

@override
bool numParamsVaries() {
  return numParams < 0;
}