Version constructor

Version({
  1. String? name,
  2. String? version,
})

Implementation

Version({
  this.name,
  this.version,
});