operator / method

PositionUnit operator /(
  1. PositionUnit other
)

Divides one position unit by another.

Implementation

PositionUnit operator /(PositionUnit other) {
  return _CalculatedPosition(
    first: this,
    second: other,
    operation: calculationDivide,
  );
}