mul method

int mul(
  1. int value
)

Multiplies this integer by a value.

Example:

int count = 10;
count = count.mul(3); // 30

Implementation

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