Version constructor

Version({
  1. int? epoch,
  2. bool? inclusive,
  3. String? kind,
  4. String? name,
  5. String? revision,
})

Implementation

Version({
  this.epoch,
  this.inclusive,
  this.kind,
  this.name,
  this.revision,
});