AppInfo constructor

AppInfo({
  1. required String appName,
  2. required String appPackage,
  3. required Uint8List appIcon,
  4. required String? description,
  5. required bool isLaunchable,
  6. required bool isSystemApp,
  7. required int versionCode,
  8. required String? versionName,
})

Implementation

AppInfo({
  required this.appName,
  required this.appPackage,
  required this.appIcon,
  required this.description,
  required this.isLaunchable,
  required this.isSystemApp,
  required this.versionCode,
  required this.versionName,
});