AppUsageData constructor
AppUsageData({})
Implementation
AppUsageData({
this.packageName,
this.appLabel,
this.installTime,
this.icon,
this.usages,
}) {
// Decode Base64 icon to Uint8List if available
if (icon != null) {
memoryIcon = base64Decode(icon!);
}
}