hwnd property

int hwnd

The window handler ID (if created).

Implementation

int get hwnd {
  final hwnd = hwndIfCreated;
  if (hwnd == null) {
    throw StateError(
        "Window not created! `hwnd` not defined! Method `create()` should be called before use of `hwnd`.");
  }
  return hwnd;
}