multiplyBy method

int multiplyBy(
  1. int value
)

Multiplies the current integer by the given value.

Implementation

int multiplyBy(int value) => this * value;