updateStickerPack method

  1. @override
Future<void> updateStickerPack(
  1. StickerPack stickerPack
)
override

Updates stickerPack in Whatsapp

Updates stickerPack in the sticker pack list that is exposed via the ContentProvider

Implementation

@override
Future<void> updateStickerPack(StickerPack stickerPack) async {
  return await methodChannel.invokeMethod(
    'updateStickerPack',
    stickerPack.json,
  );
}