PixabayVideo constructor

PixabayVideo({
  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? pageURL,
  12. int? duration,
  13. String? pictureId,
  14. List<PixabayVideoDescriptor>? videos,
  15. String? userImageURL,
})

Implementation

PixabayVideo({
  String? tags,
  String? type,
  String? user,
  int? downloads,
  int? likes,
  int? id,
  int? userId,
  int? views,
  int? comments,
  int? favorites,
  this.pageURL,
  this.duration,
  this.pictureId,
  this.videos,
  this.userImageURL,
}) : super(
          user: user,
          downloads: downloads,
          favorites: favorites,
          comments: comments,
          id: id,
          userId: userId,
          views: views,
          likes: likes,
          tags: tags,
          type: type);