min static method

MinRule min(
  1. int value
)

Creates a minimum-length validation rule.

The resulting rule fails when the input length is less than value.

Example:

final rule = Rule.min(8);

Implementation

static MinRule min(int value) => MinRule(value);