onBlur method

void onBlur(
  1. EventCallback onEvent
)

Implementation

void onBlur(EventCallback<dynamic> onEvent) {
  return on("blur", allowInterop((e) {
    onEvent(e);
  }));
}