valid property
bool
get
valid
Implementation
bool get valid {
if (widget.validator == null) {
return (true);
}
return (widget.validator!(selectedResult) == null);
}
bool get valid {
if (widget.validator == null) {
return (true);
}
return (widget.validator!(selectedResult) == null);
}