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