operator unary- method
Negates this spacing unit (equivalent to 0 - this).
Implementation
SpacingUnit operator -() {
return _CalculatedSpacing(
first: const _FixedSpacing(0),
second: this,
operation: calculationSubtract,
);
}
Negates this spacing unit (equivalent to 0 - this).
SpacingUnit operator -() {
return _CalculatedSpacing(
first: const _FixedSpacing(0),
second: this,
operation: calculationSubtract,
);
}