divide method

void divide(
  1. num other
)

Divides the current value by other.

Implementation

void divide(num other) => value = (value / other) as T;