AndroidAppInfo constructor

const AndroidAppInfo({
  1. required String packageName,
  2. required String displayName,
  3. required String categoryName,
  4. required int category,
  5. required Uint8List iconBytes,
})

Model for app information. All fields are required. Matches fields found at https://developer.android.com/reference/android/content/pm/ApplicationInfo#fields

Implementation

const AndroidAppInfo({
  required this.packageName,
  required this.displayName,
  required this.categoryName,
  required this.category,
  required this.iconBytes,
});