SelectionIndexResponse constructor

SelectionIndexResponse({
  1. int? selectionId,
  2. String? name,
  3. int? count,
  4. String? duration,
  5. TimeOfDay? timeOfDay,
  6. DateTime? createDate,
  7. List<String>? companyTypeSelections = const [],
  8. List<String>? genreSelections = const [],
  9. double? rating,
  10. String? imageFile,
  11. int? views,
})

Returns a new SelectionIndexResponse instance.

Implementation

SelectionIndexResponse({
  this.selectionId,
  this.name,
  this.count,
  this.duration,
  this.timeOfDay,
  this.createDate,
  this.companyTypeSelections = const [],
  this.genreSelections = const [],
  this.rating,
  this.imageFile,
  this.views,
});