ValidationResult.error constructor
Implementation
factory ValidationResult.error(String message, {String? gotPart, String? hint}) {
return ValidationResult(isValid: false, errorMessage: message, gotPart: gotPart, hint: hint);
}
factory ValidationResult.error(String message, {String? gotPart, String? hint}) {
return ValidationResult(isValid: false, errorMessage: message, gotPart: gotPart, hint: hint);
}