GiphyGif constructor

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

Implementation

GiphyGif({
  required this.title,
  required this.type,
  required this.id,
  required this.slug,
  required this.url,
  required this.bitlyGifUrl,
  required this.bitlyUrl,
  required this.embedUrl,
  required this.username,
  required this.source,
  required this.rating,
  required this.contentUrl,
  required this.sourceTld,
  required this.sourcePostUrl,
  required this.isSticker,
  required this.importDatetime,
  required this.trendingDatetime,
  required this.user,
  required this.images,
});