multiplyAllBy method

Iterable<T> multiplyAllBy(
  1. T number
)

Implementation

Iterable<T> multiplyAllBy(T number) {
  return map((element) => element * number as T);
}