Version constructor

Version({
  1. String? baseOS,
  2. String? securityPatch,
  3. int? sdkInt,
  4. String? release,
  5. String? codename,
  6. int? previewSdkInt,
  7. String? incremental,
})

Implementation

Version(
    {this.baseOS,
    this.securityPatch,
    this.sdkInt,
    this.release,
    this.codename,
    this.previewSdkInt,
    this.incremental});