InvokeMemberMethodExpr constructor

InvokeMemberMethodExpr(
  1. String methodName,
  2. List<Expression> args, {
  3. OutputType? outputType,
  4. List<NamedExpr>? namedArgs,
})

Implementation

InvokeMemberMethodExpr(
  this.methodName,
  this.args, {
  OutputType? outputType,
  this.namedArgs,
}) : super(outputType);