superConstructorInvocation abstract method

SuperConstructorInvocation superConstructorInvocation(
  1. Token superKeyword,
  2. Token? period,
  3. SimpleIdentifier? constructorName,
  4. 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);