divideBy method

double divideBy(
  1. int value
)

Divides the current integer by the given value.

Implementation

double divideBy(int value) => this / value;