ChipRow constructor

const ChipRow({
  1. Key? key,
  2. required List<String> selectedLabels,
  3. required void onDelete(
    1. String
    ),
})

Implementation

const ChipRow({
  super.key,
  required this.selectedLabels,
  required this.onDelete,
});