skip to Main Content

Launch Whatsapp Business from Flutter

I am trying to launch WhatsApp Business app using Flutter and have written below code: whatsAppBusiness(phone) { print(phone); return launchUrl( Uri.parse( 'whatsapp-business://send?phone=$phone', // 'https://api.whatsapp.com/$phone', //put your number here ), ); } but it is not getting launched.

VIEW QUESTION
Back To Top
Search