isLengthLowerOrEqual method

bool isLengthLowerOrEqual(
  1. int maxLength
)

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

Implementation

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