operator / method
Divides one position unit by another.
Implementation
PositionUnit operator /(PositionUnit other) {
return _CalculatedPosition(
first: this,
second: other,
operation: calculationDivide,
);
}
Divides one position unit by another.
PositionUnit operator /(PositionUnit other) {
return _CalculatedPosition(
first: this,
second: other,
operation: calculationDivide,
);
}