DraggableWindowWidget constructor

const DraggableWindowWidget({
  1. Key? key,
  2. required String roomId,
  3. required RoomParticipant mainParticipant,
  4. bool isMainScreenStream = false,
  5. RoomParticipant? draggableParticipant,
  6. required double draggableHeight,
  7. required double draggableWidth,
  8. required Orientation orientation,
})

Implementation

const DraggableWindowWidget({
  super.key,
  required this.roomId,
  required this.mainParticipant,
  this.isMainScreenStream = false,
  this.draggableParticipant,
  required this.draggableHeight,
  required this.draggableWidth,
  required this.orientation,
});