PackageData constructor

PackageData({
  1. required String packageName,
  2. required String appName,
  3. required bool isSystemApp,
})

Implementation

PackageData({
  required this.packageName,
  required this.appName,
  required this.isSystemApp,
});