Display constructor

Display({
  1. required num id,
  2. String? name,
  3. required Size size,
  4. Offset? visiblePosition,
  5. Size? visibleSize,
  6. num? scaleFactor,
})

Implementation

Display({
  required this.id,
  this.name,
  required this.size,
  this.visiblePosition,
  this.visibleSize,
  this.scaleFactor,
});