LddDisplayInfo constructor

const LddDisplayInfo({
  1. required String name,
  2. required int id,
  3. required int x,
  4. required int y,
  5. required int width,
  6. required int height,
  7. required double rotation,
  8. required double scaleFactor,
  9. required double frequency,
  10. required bool isPrimary,
})

Implementation

const LddDisplayInfo({
  required this.name,
  required this.id,
  required this.x,
  required this.y,
  required this.width,
  required this.height,
  required this.rotation,
  required this.scaleFactor,
  required this.frequency,
  required this.isPrimary,
});