RoomParticipantWidget constructor

const RoomParticipantWidget({
  1. Key? key,
  2. required RoomParticipantController controller,
})

Creates a RoomParticipantWidget.

The controller parameter is required and controls the video display.

Implementation

const RoomParticipantWidget({
  super.key,
  required this.controller,
});