setCallConnected method
Set call has been connected successfully. On iOS, using Callkit(update a history into the Phone app). On Android, Nothing(only callback event listener).
Implementation
@override
Future<void> setCallConnected(String id) async {
await methodChannel.invokeMethod('callConnected', {'id': id});
}