operator <= method
- T other
Returns true
if the value of this Measurement
is less than or equal to the value of other
.
Implementation
bool operator <=(T other) => _baseValue <= other._baseValue;
Returns true
if the value of this Measurement
is less than or equal to the value of other
.
bool operator <=(T other) => _baseValue <= other._baseValue;