ChipRow constructor

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

Creates a ChipRow with a list of selectedLabels and an onDelete callback.

Implementation

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