setCallConnected static method

Future setCallConnected(
  1. String id
)

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});
}