valid property

bool valid

Implementation

bool get valid {
  if (widget.validator == null) {
    return (true);
  }
  return (widget.validator?.call(selectedResult) == null);
}