isStickerPackInstalled method
Checks if a StickerPack with the given identifier is available in
WhatsApp
Implementation
@override
Future<bool> isStickerPackInstalled(String identifier) async {
final bool? isInstalled = await methodChannel.invokeMethod<bool>(
'isStickerPackAdded',
{'identifier': identifier},
);
return isInstalled ?? false;
}