Between constructor
Creates a new instance of the Between 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
Between(this.min, this.max, {String? message}) : super(message);