toMap method
Implementation
Map toMap() {
var map = Map();
map['packageName'] = packageName;
map['isApex'] = isApex;
map['applicationInfo'] = applicationInfo?.toMap();
map['firstInstallTime'] = firstInstallTime;
map['baseRevisionCode'] = baseRevisionCode;
map['versionCode'] = versionCode;
map['versionName'] = versionName;
map['sharedUserId'] = sharedUserId;
return map;
}