Version constructor

const Version({
  1. int major = 0,
  2. int minor = 0,
  3. int patch = 0,
})

Implementation

const Version({
  this.major = 0,
  this.minor = 0,
  this.patch = 0,
});