restore method

bool restore()

Restores this Window.

Implementation

bool restore() {
  final hwnd = this.hwnd;

  var r = ShowWindow(hwnd, SHOW_WINDOW_CMD.SW_RESTORE);
  return r == 0;
}