callMobile function

dynamic callMobile(
  1. String phone
)

Implementation

callMobile(String phone) async {
  var uri = "tel:${checkPhoneNumber(phone)}";
  if (await canLaunch(uri))
    await launch(uri);
}