SoftwarePackage constructor

SoftwarePackage({
  1. String? architecture,
  2. String? epoch,
  3. String? name,
  4. String? release,
  5. String? version,
})

Implementation

SoftwarePackage({
  this.architecture,
  this.epoch,
  this.name,
  this.release,
  this.version,
});