AppInfo constructor

AppInfo(
  1. String? name,
  2. String? bundleId,
  3. Uint8List? icon,
  4. String? versionName,
  5. int? versionCode,
)

Implementation

AppInfo(
  this.name,
  this.bundleId,
  this.icon,
  this.versionName,
  this.versionCode,
);