ContentGridLayout constructor

const ContentGridLayout({
  1. Key? key,
  2. required String title,
  3. required String objectType,
  4. required String listType,
  5. required String categoryType,
  6. String related = "",
  7. String partnerid = "",
  8. String idgenre = "",
  9. String showAll = "",
  10. bool renderScrollButtons = true,
  11. bool renderEmpty = false,
  12. bool isEpisode = false,
  13. bool shouldRoutePush = false,
  14. bool shrinkWrap = false,
  15. String seriesId = "",
  16. Function? onLoadCallback,
  17. bool paginationEnabled = false,
  18. Function? onContentLoaded,
  19. ScrollController? parentScrollController,
  20. int? seasonNum,
})

Implementation

const ContentGridLayout({
  super.key,
  required this.title,
  required this.objectType,
  required this.listType,
  required this.categoryType,
  this.related = "",
  this.partnerid = "",
  this.idgenre = "",
  this.showAll = "",
  this.renderScrollButtons = true,
  this.renderEmpty = false,
  this.isEpisode = false,
  this.shouldRoutePush = false,
  this.shrinkWrap = false,
  this.seriesId = "",
  this.onLoadCallback,
  this.paginationEnabled = false,
  this.onContentLoaded,
  this.parentScrollController,
  this.seasonNum,
});