Window constructor

const Window({
  1. required String title,
  2. required bool isActive,
  3. required int hWnd,
  4. String? exePath,
})

Implementation

const Window({
  required this.title,
  required this.isActive,
  required this.hWnd,
  this.exePath,
});