factory InstalledApp.fromMap(Map<String, dynamic> map) { return InstalledApp( name: map['name'], iconPath: map['iconPath'], // This can be null id: map['id'], ); }