AppInfo constructor

const AppInfo({
  1. required String name,
  2. String? packageName,
  3. String? scheme,
  4. String? icon,
})

Creates an AppInfo instance.

Implementation

const AppInfo({
  required this.name,
  this.packageName,
  this.scheme,
  this.icon,
});