DropdownCell constructor

const DropdownCell({
  1. Key? key,
  2. required List<DropDownData> items,
})

Implementation

const DropdownCell({
  super.key,
  required this.items,
});