methodInvocation abstract method
MethodInvocation
methodInvocation(
- Expression? target,
- Token? operator,
- SimpleIdentifier methodName,
- TypeArgumentList? typeArguments,
- ArgumentList argumentList,
Returns a newly created method invocation. The target
and operator
can be null
if there is no target.
Implementation
MethodInvocation methodInvocation(
Expression? target,
Token? operator,
SimpleIdentifier methodName,
TypeArgumentList? typeArguments,
ArgumentList argumentList);