operator unary- method
Negates this size unit (equivalent to 0 - this).
Implementation
SizeUnit operator -() {
return _CalculatedSize(
first: const _FixedSize(0),
second: this,
operation: calculationSubtract,
);
}
Negates this size unit (equivalent to 0 - this).
SizeUnit operator -() {
return _CalculatedSize(
first: const _FixedSize(0),
second: this,
operation: calculationSubtract,
);
}