joinToConference method

Future<int> joinToConference({
  1. required int sessionId,
})

Joins a session into the existing conference. The session must not be on hold (un-hold first).

Returns 0 on success, negative error code on failure.

Implementation

Future<int> joinToConference({required int sessionId}) async {
  throw UnimplementedError('joinToConference has not been implemented.');
}