argumentList property

  1. @override
ArgumentListImpl get argumentList
override

Return the list of arguments to the constructor.

Implementation

@override
ArgumentListImpl get argumentList => _argumentList;
set argumentList (ArgumentListImpl argumentList)

Implementation

set argumentList(ArgumentListImpl argumentList) {
  _argumentList = _becomeParentOf(argumentList);
}