AppInfo constructor

AppInfo({
  1. required String appName,
  2. required String packageName,
  3. Uint8List? icon,
})

Creates a new AppInfo instance.

Implementation

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