lengthMin method

B lengthMin(
  1. int min, {
  2. String? message,
})

Validate that the length is at least the specified minimum.

Implementation

B lengthMin(int min, {String? message}) => length([isGte(min)], message: message);