isLengthLowerOrEqual method

bool isLengthLowerOrEqual(
  1. int maxLength
)

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

Implementation

bool isLengthLowerOrEqual(int maxLength) =>
    ValidatorUtils.isLengthLowerOrEqual(this, maxLength);