create static method
- required VideoStreamType streamType,
- required RoomParticipant participant,
Create controller instance
streamType: Video stream typeparticipant: Participant info Returns: Controller instance
Implementation
static RoomParticipantController create({
required VideoStreamType streamType,
required RoomParticipant participant,
}) {
return RoomParticipantControllerImpl(
streamType: streamType,
participant: participant,
);
}