computeValue method

  1. @override
List computeValue(
  1. Map<String, dynamic> variables
)
override

Computes the value, relative to some set of variables.

Implementation

@override
List computeValue(Map<String, dynamic> variables) {
  return values.map((v) => v.computeValue(variables)).toList();
}