DropdownWidget constructor

const DropdownWidget({
  1. Key? key,
  2. List<String>? items,
  3. ValueChanged<String>? itemCallBack,
  4. String? currentItem,
  5. String? hintText,
  6. String? title,
  7. FormFieldValidator? validator,
})

Implementation

const DropdownWidget({
   Key? key,
   this.items,
   this.itemCallBack,
   this.currentItem,
   this.hintText,
   this.title,
   this.validator
 }): super(key: key);