CategorizedContent constructor

CategorizedContent({
  1. required String category,
  2. required List<Content> contents,
  3. NextSearch? next,
})

Implementation

CategorizedContent({
  required this.category,
  required this.contents,
  this.next,
});