onFocusLost method

dynamic onFocusLost(
  1. dynamic onFocusLostFunction(
    1. Event e
    )
)

Uygulama Odak Kayıp Ettiğinde onFocusLost yapılması gerekenler.

Implementation

onFocusLost(Function(html.Event e) onFocusLostFunction) {
  html.window.onBlur.listen((html.Event e) => onFocusLostFunction(e));
}