isLengthLessThan method
Checks if length of double value is LESS than max.
Parameters
max
: The maximum length
Returns
true
if the length of this value is less than the maximum lengthfalse
otherwise
Implementation
bool isLengthLessThan(int max) => length < max;