operator ~/ method

  1. @override
int operator ~/(
  1. num other
)

Truncating division operator.

The result of the truncating division a ~/ b is equivalent to (a / b).truncate().

Implementation

@override
int operator ~/(num other) => value ~/ other;