setStickers method

void setStickers(
  1. List<StickerAsset> stickers
)

Implementation

void setStickers(List<StickerAsset> stickers) {
  Future.delayed(const Duration(milliseconds: 16), () {
    value = value.copyWith(
      assets: List.from(stickers),
      selectedAssetId: emptyAssetId,
    );
  });
}