Window.fromMap constructor
Implementation
factory Window.fromMap(Map<String, dynamic> map) {
return Window(
title: map['title'] as String,
isActive: map['isActive'] as bool,
hWnd: map['hWnd'] as int,
exePath: map['exePath'] as String,
);
}