CallValue constructor

const CallValue({
  1. Value? receiver,
  2. required String methodName,
  3. required List<Value> arguments,
})

Implementation

const CallValue({
  this.receiver,
  required this.methodName,
  required this.arguments,
}) : super();