BetweenValue constructor
Creates a new instance of the BetweenValue validation rule.
min: The minimum allowed length (inclusive).max: The maximum allowed length (inclusive).message: A custom validation message (optional) to be displayed when the validation fails.
Implementation
BetweenValue(this.min, this.max, {String? message}) : super(message);