superConstructorInvocation abstract method
SuperConstructorInvocation
superConstructorInvocation(
- Token superKeyword,
- Token? period,
- SimpleIdentifier? constructorName,
- ArgumentList argumentList,
Returns a newly created super invocation to invoke the inherited
constructor with the given name with the given arguments. The period
and
constructorName
can be null
if the constructor being invoked is the
unnamed constructor.
Implementation
SuperConstructorInvocation superConstructorInvocation(
Token superKeyword,
Token? period,
SimpleIdentifier? constructorName,
ArgumentList argumentList);