isLengthLessThan method

bool isLengthLessThan(
  1. int max
)

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 length
  • false otherwise

Implementation

bool isLengthLessThan(int max) => length < max;