CallInstruction constructor

CallInstruction({
  1. required int offset,
  2. Value? receiver,
  3. required String methodName,
  4. required List<Value> arguments,
  5. Variable? result,
})

Implementation

CallInstruction({
  required super.offset,
  this.receiver,
  required this.methodName,
  required this.arguments,
  this.result,
});