Display constructor

Display({
  1. required int? displayId,
  2. int? flag,
  3. required String? name,
  4. int? rotation,
})

Implementation

Display({
  required this.displayId,
  this.flag,
  required this.name,
  this.rotation,
});