I have designed a function to call a number on a pressed icon. But it cannot launch url
_callMe() async {
print("Phone +91${store_phone}");
var uri = 'tel:+91${store_phone}';
if (await canLaunch(uri)) {
await launch(uri);
} else {
throw 'Could not launch $uri';
}
}
It Prints the error Unhandled Exception: Could not launch +919919195521
any help guys?