App constructor

App({
  1. String? name,
  2. String? packageName,
  3. String? versionName,
  4. int? versionCode,
  5. int? installTimeMillis,
})

Implementation

App({
  this.name,
  this.packageName,
  this.versionName,
  this.versionCode,
  this.installTimeMillis,
}) : super();