observingParticipantConnected static method

void observingParticipantConnected(
  1. ParticipantConnectedEvent event
)

Implementation

static void observingParticipantConnected(ParticipantConnectedEvent event) {
  for (var e in MTVideoCallPlugin.instance.roomListener) {
    e.onParticipantConnectedRoom(event.participant);
  }
}