Creates a minimum-length validation rule.
The resulting rule fails when the input length is less than value.
value
Example:
final rule = Rule.min(8);
static MinRule min(int value) => MinRule(value);