I try to make a phone call from my Flutter app. With the following code: UrlLauncher.launch('tel: xxxxxxxx'); I found this Function on the GitHub flutter repo:
I am able to open the Call Log through the following lines: Intent showCallLog = new Intent(); showCallLog.setAction(Intent.ACTION_VIEW); showC