AppInfo constructor

AppInfo(
  1. String? name,
  2. String? packageName,
  3. String? versionName,
  4. int? versionCode,
)

Implementation

AppInfo(
  this.name,
  this.packageName,
  this.versionName,
  this.versionCode,
);