FCCDropdownGroup<T> constructor

const FCCDropdownGroup<T>({
  1. required String label,
  2. required List<DropdownMenuItem<T>> items,
})

Implementation

const FCCDropdownGroup({
  required this.label,
  required this.items,
});