isStickerPackInstalled method

Future<bool> isStickerPackInstalled(
  1. String stickerPackIdentifier
)

Check if a sticker pack is installed on WhatsApp

stickerPackIdentifier The sticker pack identifier

Implementation

Future<bool> isStickerPackInstalled(String stickerPackIdentifier) async {
  final bool result = await _channel.invokeMethod(
      "isStickerPackInstalled", {"identifier": stickerPackIdentifier});
  return result;
}