makePhoneCall function

dynamic makePhoneCall(
  1. String phoneNumber
)

Implementation

makePhoneCall(String phoneNumber) async {
  final Uri launchUri = Uri(
    scheme: 'tel',
    path: phoneNumber,
  );
  await launchUrl(launchUri);
}