DropDownSearch constructor

DropDownSearch({
  1. Key? key,
  2. required TextEditingController dropDownController,
  3. required PageData<String> initData,
  4. required Future<PageData<String>> fetchMoreData(
    1. String inputValue,
    2. int pageNumber
    ),
  5. required dynamic translateText(
    1. String keyText
    ),
  6. String? inputName,
  7. String? placeholderName,
})

Implementation

DropDownSearch({Key? key, required this.dropDownController, required this.initData, required this.fetchMoreData, required this.translateText, this.inputName, this.placeholderName})
    : super(key: key);