Version constructor

Version({
  1. List<String>? availableFeatures,
  2. bool? defaultVersion,
  3. String? type,
  4. String? versionNumber,
})

Implementation

Version({
  this.availableFeatures,
  this.defaultVersion,
  this.type,
  this.versionNumber,
});