AppInfo constructor
const
AppInfo({
- required String name,
- required Uint8List? icon,
- required String packageName,
- required String versionName,
- required int versionCode,
- required PlatformType platformType,
- required int installedTimestamp,
- required bool isSystemApp,
- required bool isLaunchableApp,
- required AppCategory category,
Implementation
const AppInfo({
required this.name,
required this.icon,
required this.packageName,
required this.versionName,
required this.versionCode,
required this.platformType,
required this.installedTimestamp,
required this.isSystemApp,
required this.isLaunchableApp,
required this.category,
});