AppVersion constructor

AppVersion({
  1. bool? isProduction,
  2. int? targetSdkVersion,
  3. String? track,
  4. List<String>? trackId,
  5. int? versionCode,
  6. String? versionString,
})

Implementation

AppVersion({
  this.isProduction,
  this.targetSdkVersion,
  this.track,
  this.trackId,
  this.versionCode,
  this.versionString,
});