operator ~/ method

int operator ~/(
  1. Object other
)

Implementation

int operator ~/(Object other) {
  final rhs = _resolve(other);
  if (rhs == 0) throw UnsupportedError('Integer division by zero');
  return value ~/ rhs;
}