InfoApp constructor

InfoApp({
  1. String? bundleId,
  2. String? version,
  3. String? build,
  4. String? packageName,
  5. int? versionCode,
  6. int? firstInstallTime,
  7. int? lastUpdateTime,
  8. String? installerStore,
  9. String? teamId,
})

Creates a new InfoApp instance.

Implementation

InfoApp({
  this.bundleId,
  this.version,
  this.build,
  this.packageName,
  this.versionCode,
  this.firstInstallTime,
  this.lastUpdateTime,
  this.installerStore,
  this.teamId,
});