operator / method

SpacingUnit operator /(
  1. SpacingUnit other
)

Divides one spacing unit by another.

Implementation

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