AppInfo constructor

AppInfo({
  1. required String appName,
  2. required String appPackage,
  3. required Uint8List appIcon,
})

Implementation

AppInfo({
  required this.appName,
  required this.appPackage,
  required this.appIcon
});