onFocus method

void onFocus(
  1. EventCallback onEvent
)

Implementation

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