isStickerAnimated method

bool isStickerAnimated(
  1. String stickerPath
)

Returns if the sticker at stickerPath is animated

Implementation

bool isStickerAnimated(String stickerPath) {
  return extension(stickerPath).toLowerCase() == '.webp' &&
      _fileService.isWebpAnimated(stickerPath);
}