isLengthLowerOrEqual static method
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);