enterConference method

void enterConference(
  1. String conferenceId
)

Implementation

void enterConference(String conferenceId) {
  if (_isEnteringRoom) {
    return;
  }
  _isEnteringRoom = true;
  ConferenceSession.newInstance(conferenceId)
    ..onActionSuccess = _onEnterConferenceSuccess
    ..onActionError = (ConferenceError error, String message) {
      _onEnterConferenceError(error, message, conferenceId);
    }
    ..join();
}