operator - method

SpacingUnit operator -(
  1. SpacingUnit other
)

Subtracts one spacing unit from another.

Implementation

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