innerValidate method
Returns true or false depending on the validation process. This method is then used by the ValidatorWithStaticError.validate method to return a static error if the result is false.
Implementation
@override
bool innerValidate(T? value) {
final otherValue = getValue();
if (value != null && otherValue != null) {
return value >= otherValue;
}
return false;
}