redirectingConstructorInvocation abstract method

RedirectingConstructorInvocation redirectingConstructorInvocation(
  1. Token thisKeyword,
  2. Token? period,
  3. SimpleIdentifier? constructorName,
  4. ArgumentList argumentList
)

Returns a newly created redirecting invocation to invoke the constructor with the given name with the given arguments. The constructorName can be null if the constructor being invoked is the unnamed constructor.

Implementation

RedirectingConstructorInvocation redirectingConstructorInvocation(
    Token thisKeyword,
    Token? period,
    SimpleIdentifier? constructorName,
    ArgumentList argumentList);