operator - method
Subtracts one spacing unit from another.
Implementation
SpacingUnit operator -(SpacingUnit other) {
return _CalculatedSpacing(
first: this,
second: other,
operation: calculationSubtract,
);
}
Subtracts one spacing unit from another.
SpacingUnit operator -(SpacingUnit other) {
return _CalculatedSpacing(
first: this,
second: other,
operation: calculationSubtract,
);
}