Collection constructor

const Collection({
  1. required String name,
  2. required String family,
})

Implementation

const Collection({
  required this.name,
  required this.family,
});