AndroidVersion constructor

AndroidVersion({
  1. int? apiLevel,
  2. String? codeName,
  3. Distribution? distribution,
  4. String? id,
  5. Date? releaseDate,
  6. List<String>? tags,
  7. String? versionString,
})

Implementation

AndroidVersion({
  this.apiLevel,
  this.codeName,
  this.distribution,
  this.id,
  this.releaseDate,
  this.tags,
  this.versionString,
});