ModelVersion constructor

ModelVersion({
  1. String? dated,
  2. int? major,
  3. int? minor,
  4. int? patch,
})

Implementation

ModelVersion({
  this.dated,
  this.major,
  this.minor,
  this.patch,
});