intDivide method

void intDivide(
  1. num other
)

Performs integer division by other.

Implementation

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