checkInput method

void checkInput(
  1. String input
)

Implementation

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