MinRule constructor

const MinRule(
  1. int limit
)

Creates a min-length rule using the given limit.

Example:

final rule = MinRule(3);

Implementation

const MinRule(this.limit);