Group<T> constructor

const Group<T>({
  1. Key? key,
  2. List<Item<T>>? items,
  3. required String title,
  4. required T id,
})

Implementation

const Group({
  Key? key,
  this.items,
  required this.title,
  required this.id,
});