operator * method

List<double> operator *(
  1. List<double> other
)

Implementation

List<double> operator *(List<double> other) {
  return List.generate(length, (i) => this[i] * other[i]);
}