GiphyUser constructor

const GiphyUser({
  1. String? id,
  2. String? avatarUrl,
  3. String? avatar,
  4. String? bannerUrl,
  5. String? bannerImage,
  6. String? profileUrl,
  7. required String username,
  8. String? displayName,
  9. String? email,
  10. String? twitter,
  11. bool isPublic = false,
  12. String? attributionDisplayName,
  13. String? name,
  14. String? description,
  15. String? aboutBio,
  16. String? facebookUrl,
  17. String? twitterUrl,
  18. String? instagramUrl,
  19. String? tumblrUrl,
  20. String? tiktokUrl,
  21. String? youtubeUrl,
  22. bool isSuppressChrome = false,
  23. String? websiteUrl,
  24. String? websiteDisplayUrl,
  25. bool verified = false,
  26. bool isStaff = false,
  27. String? userType,
})

Constructor for creating a GiphyUser instance.

Implementation

const GiphyUser({
  this.id,
  this.avatarUrl,
  this.avatar,
  this.bannerUrl,
  this.bannerImage,
  this.profileUrl,
  required this.username,
  this.displayName,
  this.email,
  this.twitter,
  this.isPublic = false,
  this.attributionDisplayName,
  this.name,
  this.description,
  this.aboutBio,
  this.facebookUrl,
  this.twitterUrl,
  this.instagramUrl,
  this.tumblrUrl,
  this.tiktokUrl,
  this.youtubeUrl,
  this.isSuppressChrome = false,
  this.websiteUrl,
  this.websiteDisplayUrl,
  this.verified = false,
  this.isStaff = false,
  this.userType,
});