addToConference method
Add callId
to current conference
Implementation
@override
Future<void> addToConference({required String callId}) async {
return await methodChannel
.invokeMethod('addToConference', {"callId": callId});
}
Add callId
to current conference
@override
Future<void> addToConference({required String callId}) async {
return await methodChannel
.invokeMethod('addToConference', {"callId": callId});
}