TagPanel constructor

const TagPanel({
  1. Key? key,
  2. required int selected,
  3. required dynamic onSelect(
    1. int
    ),
  4. required List<IconData> icons,
})

Implementation

const TagPanel({
  Key? key,
  required this.selected,
  required this.onSelect,
  required this.icons,
}) : super(key: key);