operator * method

SizeUnit operator *(
  1. SizeUnit other
)

Multiplies two size units.

Implementation

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