AppInfo constructor

const AppInfo({
  1. required String appName,
  2. required String packageName,
  3. required bool isSystemApp,
  4. List<int>? icon,
})

Constructor for the AppInfo class.

Implementation

const AppInfo({
  required this.appName,
  required this.packageName,
  required this.isSystemApp,
  this.icon,
});