BiosDetails constructor

BiosDetails({
  1. String? biosName,
  2. String? id,
  3. String? manufacturer,
  4. Date? releaseDate,
  5. String? smbiosUuid,
  6. String? version,
})

Implementation

BiosDetails({
  this.biosName,
  this.id,
  this.manufacturer,
  this.releaseDate,
  this.smbiosUuid,
  this.version,
});