launchPhoneURL method
Implementation
void launchPhoneURL(String phone){
final Uri uri = Uri(
scheme: "tel",
path: phone
);
launch(uri.toString());
}
void launchPhoneURL(String phone){
final Uri uri = Uri(
scheme: "tel",
path: phone
);
launch(uri.toString());
}