MinLengthRule constructor
Creates a minimum length validation rule.
minLength is the required minimum number of characters.
message is the optional error message.
Implementation
const MinLengthRule(this.minLength, {String? message})
: message =
message ?? 'Value must be at least $minLength characters long.';