operator / method

ValueVector operator /(
  1. Value other
)

Implementation

ValueVector operator /(Value other) =>
    ValueVector(values.map((v) => v / other).toList());