createConference method
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,
});
}