getCurrent method
Gets the current window.
Implementation
Future<Window> getCurrent(QueryOptions? queryOptions) async {
var $res = await promiseToFuture<$js.Window>(
$js.chrome.windows.getCurrent(queryOptions?.toJS));
return Window.fromJS($res);
}