Operand.list constructor

Operand.list(
  1. List values
)

Creates an operand that represents a ListInput.

Implementation

factory Operand.list(List<dynamic> values) {
  return ListInput(values);
}