createConference method

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

Create conference with callId and otherCallId

Implementation

@override
Future<void> createConference(
    {required String callId, required String otherCallId}) async {
  return await methodChannel.invokeMethod('createConference', {
    "otherCallId": otherCallId,
    "callId": callId,
  });
}