AppInfo constructor

AppInfo({
  1. String? appName,
  2. required String packageName,
  3. String? versionName,
  4. bool? isSystemApp,
})

Implementation

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