isWhatsappBusinessInstalled method

  1. @override
Future<bool> isWhatsappBusinessInstalled()
override

Implementation

@override
Future<bool> isWhatsappBusinessInstalled() async {
  final bool? result = await _channel.invokeMethod('isWhatsappBusinessInstalled');
  return result ?? false;
}