PixabayImage constructor

PixabayImage({
  1. String? tags,
  2. String? type,
  3. String? user,
  4. int? downloads,
  5. int? likes,
  6. int? id,
  7. int? userId,
  8. int? views,
  9. int? comments,
  10. int? favorites,
  11. String? largeImageURL,
  12. String? fullHDURL,
  13. int? webformatHeight,
  14. int? webformatWidth,
  15. int? imageWidth,
  16. String? pageURL,
  17. int? imageHeight,
  18. String? webformatURL,
  19. int? previewHeight,
  20. int? imageSize,
  21. int? previewWidth,
  22. String? userImageURL,
  23. String? previewURL,
})

Implementation

PixabayImage({
  String? tags,
  String? type,
  String? user,
  int? downloads,
  int? likes,
  int? id,
  int? userId,
  int? views,
  int? comments,
  int? favorites,
  this.largeImageURL,
  this.fullHDURL,
  this.webformatHeight,
  this.webformatWidth,
  this.imageWidth,
  this.pageURL,
  this.imageHeight,
  this.webformatURL,
  this.previewHeight,
  this.imageSize,
  this.previewWidth,
  this.userImageURL,
  this.previewURL,
}) : super(
          user: user,
          downloads: downloads,
          favorites: favorites,
          comments: comments,
          id: id,
          userId: userId,
          views: views,
          likes: likes,
          tags: tags,
          type: type);