arguments property

  1. @override
ArgumentListImpl? arguments
override

Return the arguments to the constructor being invoked, or null if this annotation is not the invocation of a constructor.

Implementation

@override
ArgumentListImpl? get arguments => _arguments;
void arguments=(ArgumentListImpl? arguments)

Implementation

set arguments(ArgumentListImpl? arguments) {
  _arguments = _becomeParentOf(arguments);
}