isLengthBetween method

bool isLengthBetween(
  1. int minLength,
  2. int maxLength
)

Checks if length of list is BETWEEN minLength to maxLength. 检查数据长度是否在minLength到maxLength之间

Implementation

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