startCall static method
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(CallKitParams params) async {
await _channel.invokeMethod("startCall", params.toJson());
}