shareImageToWhatsappBusiness method
Implementation
@override
Future<bool?> shareImageToWhatsappBusiness({required String imagePath, String? text, String? phone}) async {
final bool? result = await _channel.invokeMethod(
Platform.isAndroid ? 'shareToWhatsappBusiness' : 'shareImageToWhatsappBusiness',
{'imagePath': imagePath, if (text != null) 'text': text, if (phone != null) 'phone': phone},
);
return result;
}