operator - method

SizeUnit operator -(
  1. SizeUnit other
)

Subtracts one size unit from another.

Implementation

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