FunctionCall constructor

FunctionCall({
  1. String id = '',
  2. String name = '',
  3. Struct? args,
  4. List<PartialArg> partialArgs = const [],
  5. bool willContinue = false,
})

Implementation

FunctionCall({
  this.id = '',
  this.name = '',
  this.args,
  this.partialArgs = const [],
  this.willContinue = false,
}) : super(fullyQualifiedName);