Display constructor

Display({
  1. int? density,
  2. int? displayId,
  3. int? height,
  4. String? name,
  5. int? refreshRate,
  6. String? state,
  7. int? width,
})

Implementation

Display({
  this.density,
  this.displayId,
  this.height,
  this.name,
  this.refreshRate,
  this.state,
  this.width,
});