between static method

FormifyRule between(
  1. num min,
  2. num max
)

Static factory method to create a between validation rule.

Implementation

static FormifyRule between(num min, num max) => Between(min, max);