startCall static method

Future startCall(
  1. dynamic params
)

Start an Outgoing call. On iOS, using Callkit(create a history into the Phone app). On Android, Nothing(only callback event listener).

Implementation

static Future startCall(dynamic params) async {
  await _channel.invokeMethod("startCall", params);
}