checkInput method
Implementation
void checkInput(String input) {
if (input.isNotEmpty) {
widget.onResultChange(input);
} else {
widget.onResultChange(null);
}
}
void checkInput(String input) {
if (input.isNotEmpty) {
widget.onResultChange(input);
} else {
widget.onResultChange(null);
}
}