Group constructor

Group({
  1. String? title,
  2. String? description,
  3. required List<ContentItem> items,
  4. LayoutConfiguration<ContentItem>? layout,
})

Implementation

Group({
  this.title,
  this.description,
  required this.items,
  super.layout,
}) : super(schemaType: Group.schemaName) {
  setParent(items);
}