operator / method

SizeUnit operator /(
  1. SizeUnit other
)

Divides one size unit by another.

Implementation

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