operator + method

SizeUnit operator +(
  1. SizeUnit other
)

Adds two size units together.

Implementation

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