operator + method
Adds two spacing units together.
Implementation
SpacingUnit operator +(SpacingUnit other) {
return _CalculatedSpacing(
first: this,
second: other,
operation: calculationAdd,
);
}
Adds two spacing units together.
SpacingUnit operator +(SpacingUnit other) {
return _CalculatedSpacing(
first: this,
second: other,
operation: calculationAdd,
);
}