VAR_POSITIONAL property

Object? get VAR_POSITIONAL

A tuple of positional arguments that aren’t bound to any other parameter. This corresponds to a *args parameter in a Python function definition.

Implementation

static Object? get VAR_POSITIONAL {
  final inspect inspectModule = inspect.import();
  final _ParameterClassDefinition parameterClass =
      _ParameterClassDefinition.from(inspectModule.getAttribute("Parameter"));
  return parameterClass.getAttribute("VAR_POSITIONAL");
}