operator * method

List<Axel> operator *(
  1. int multiple
)

Produces a list of duplicates of this Axel.

Implementation

List<Axel> operator *(int multiple) {
  return List.filled(multiple, this);
}