GiphyContentRequest.trendingText constructor

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

Creates a GiphyContentRequest for trending text.

Implementation

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