processClose method

  1. @override
bool? processClose()
override

Processes a WM_CLOSE message or a close call.

  • If returns null (not processed), will delegate to the default behavior of DefWindowProc (call DestroyWindow).
  • If returns true tells to close the window (minimize).
  • If returns false tells to abort the window closing (do nothing).

Implementation

@override
bool? processClose() => true;