close method
- @Deprecated('Use `window.close()` or `quit()` instead.')
Closes the current window.
This is rather confusing and will be removed.
Should replace all usages with window.close()
or quit().
Implementation
@Deprecated('Use `window.close()` or `quit()` instead.')
Future<void> close() async => (await window).close();