DeviceModel constructor

const DeviceModel({
  1. String? website,
  2. String? wikiLink,
  3. String? make,
  4. String? model,
  5. String? version,
  6. List<Parameter>? parameters,
  7. String? id,
  8. required String $id,
  9. int? cstamp,
  10. String? cby,
  11. String? uby,
  12. int? ustamp,
  13. String? name,
  14. String? icon,
  15. String? description,
  16. List<String>? images,
})

Implementation

const DeviceModel({
  this.website,
  this.wikiLink,
  this.make,
  this.model,
  this.version,
  this.parameters,
  this.id,
  required this.$id,
  this.cstamp,
  this.cby,
  this.uby,
  this.ustamp,
  this.name,
  this.icon,
  this.description,
  this.logo,
  this.images,
});