argumentList property

  1. @override
ArgumentListImpl argumentList
override

Return the list of arguments to the override. In valid code this will contain a single argument, which evaluates to the object being extended.

Implementation

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

Implementation

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