setCallConnected static 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
static Future setCallConnected(String id) async {
await _channel.invokeMethod("callConnected", {'id': id});
}