AndroidAppInfo constructor

AndroidAppInfo({
  1. String? name,
  2. String? packageName,
  3. String? versionCode,
  4. String? versionName,
})

Implementation

AndroidAppInfo({
  this.name,
  this.packageName,
  this.versionCode,
  this.versionName,
});