AppInfo constructor

const AppInfo({
  1. required String name,
  2. required Uint8List? icon,
  3. required String packageName,
  4. required String versionName,
  5. required int versionCode,
  6. required PlatformType platformType,
  7. required int installedTimestamp,
  8. required bool isSystemApp,
  9. required bool isLaunchableApp,
})

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,
});