GiphyRequest.trending constructor

GiphyRequest.trending({
  1. GiphyType type = GiphyType.gifs,
  2. String language = GiphyLanguage.english,
  3. GiphyRating rating = GiphyRating.g,
})

Convenience method to create a trending request

Implementation

factory GiphyRequest.trending({
  GiphyType type = GiphyType.gifs,
  String language = GiphyLanguage.english,
  GiphyRating rating = GiphyRating.g,
}) =>
    GiphyRequest(type, language, rating);