DropDownWidgetItem constructor

DropDownWidgetItem({
  1. Key? key,
  2. String? id,
  3. required String value,
})

Implementation

DropDownWidgetItem({
  this.key,
  this.id,
  required this.value,
});