GiphyContentRequest.trendingStickers constructor

GiphyContentRequest.trendingStickers({
  1. GiphyRating rating = GiphyRating.pg13,
})

Creates a GiphyContentRequest for trending stickers.

Implementation

factory GiphyContentRequest.trendingStickers(
    {GiphyRating rating = GiphyRating.pg13}) {
  return GiphyContentRequest.trending(
      mediaType: GiphyMediaType.sticker, rating: rating);
}