blur method

void blur()

Blur the input element.

Implementation

void blur() {
  if (input != null) {
    input?.blur();
  }
}