onWindowScreenChanged method
Called when a window moves to a different screen.
Implementation
void onWindowScreenChanged(String id, void Function(int screenIndex) callback) {
onWindowEvent(id, 'screenChanged', (event) {
callback(event.data['screenIndex'] as int);
});
}