createConference method

Future<void> createConference({
  1. required String callId,
  2. required String otherCallId,
})

Create conference with callId and otherCallId

Implementation

Future<void> createConference(
    {required String callId, required String otherCallId}) async {
  throw UnimplementedError('platformVersion() has not been implemented.');
}