GiphyGif constructor

const GiphyGif({
  1. required String title,
  2. required String type,
  3. required String id,
  4. required String slug,
  5. required String url,
  6. required String bitlyUrl,
  7. required GiphyImages images,
  8. String? embedUrl,
  9. String? username,
  10. String? source,
  11. GiphyRating? rating,
  12. String? contentUrl,
  13. String? sourceTld,
  14. String? sourcePostUrl,
  15. DateTime? createDateTime,
  16. DateTime? importDateTime,
  17. DateTime? trendingDateTime,
  18. GiphyUser? user,
})

Creates a new GIF instance

Implementation

const GiphyGif({
  required this.title,
  required this.type,
  required this.id,
  required this.slug,
  required this.url,
  required this.bitlyUrl,
  required this.images,
  this.embedUrl,
  this.username,
  this.source,
  this.rating,
  this.contentUrl,
  this.sourceTld,
  this.sourcePostUrl,
  this.createDateTime,
  this.importDateTime,
  this.trendingDateTime,
  this.user,
});