makePhoneCall method

Future<void> makePhoneCall(
  1. String phoneNumber
)

Implementation

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