ThingParameters constructor

ThingParameters({
  1. required List<int> id,
  2. List<ThingType> type = const [],
  3. bool versions = false,
  4. bool videos = false,
  5. bool stats = false,
  6. bool historical = false,
  7. bool marketplace = false,
  8. bool comments = false,
  9. bool ratingComments = false,
})

Implementation

ThingParameters({
  required this.id,
  this.type = const [],
  this.versions = false,
  this.videos = false,
  this.stats = false,
  this.historical = false,
  this.marketplace = false,
  this.comments = false,
  this.ratingComments = false,
});