isWhatsAppInstalled method

Future<bool> isWhatsAppInstalled()

Implementation

Future<bool> isWhatsAppInstalled() async {
  if (!Platform.isAndroid) {
    return false;
  }
  final isInstalled = await methodChannel.invokeMethod("isWhatsAppInstalled");
  return isInstalled as bool;
}