app.call is the instance of Call API, which provide function to make native calls from your app.
to use this API you need to this permission in your package.json file
android.permission.CALL_PHONE
A working example of Call API
app.call.makeCall("123457890");
app.call.makeCall(number)number StringAn example of above code:
app.call.makeCall("1234567895")