launchPhoneURL method

void launchPhoneURL(
  1. String phone
)

Implementation

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