divideBy method

num divideBy(
  1. num value
)

Divides the current number by the given value.

Implementation

num divideBy(num value) => this / value;