App constructor

App({
  1. String? appName,
  2. String? packageName,
  3. String? versionName,
  4. Uint8List? decodedIcon,
  5. String? installDate,
  6. String? lastUpdateDate,
})

Implementation

App({
  this.appName,
  this.packageName,
  this.versionName,
  this.decodedIcon,
  this.installDate,
  this.lastUpdateDate,
});