isLengthLowerOrEqual static method

  1. @deprecated
bool isLengthLowerOrEqual(
  1. dynamic value,
  2. int maxLength
)

Checks if length of data is LOWER OR EQUAL to maxLength.

This method is deprecated, use isLengthLessOrEqual instead

Implementation

@deprecated
static bool isLengthLowerOrEqual(dynamic value, int maxLength) =>
    isLengthLessOrEqual(value, maxLength);