Integer (truncating) division operator. Returns a point whose coordinates are the coordinates of the left-hand-side operand (a point) divided by the scalar right-hand-side operand (a double), rounded towards zero.
Source
Point operator ~/(double operand) => new Point((x ~/ operand).toDouble(), (y ~/ operand).toDouble());