SdkVersion constructor

SdkVersion({
  1. int minor = 0,
  2. int major = 0,
  3. int year = 0,
  4. int week = 0,
  5. String revision = '',
})

Implementation

SdkVersion({
  this.minor = 0,
  this.major = 0,
  this.year = 0,
  this.week = 0,
  this.revision = '',
});