AppVersion constructor

AppVersion({
  1. bool? production,
  2. List<String>? trackIds,
  3. int? versionCode,
  4. String? versionString,
})

Implementation

AppVersion({
  this.production,
  this.trackIds,
  this.versionCode,
  this.versionString,
});