Do I need to ask for permission from a user for launching dialpad(phone call) with the help of url_launcher.
Here is the basic code
launchURL(String number) async {
if (await canLaunch(number)) {
await launch(number);
} else {
throw 'Could not launch $number';
}
}
Just simply launching with a number