isLengthGreaterThan method

bool isLengthGreaterThan(
  1. int max
)

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

Implementation

bool isLengthGreaterThan(int max) => length > max;