DynamicOptionsConfig constructor

DynamicOptionsConfig({
  1. required String apiUrl,
  2. String? responsePath,
  3. String valueField = "value",
  4. String textField = "text",
  5. bool enableSearch = false,
  6. int minCharsForSearch = 2,
})

Implementation

DynamicOptionsConfig({
  required this.apiUrl,
  this.responsePath,
  this.valueField = "value",
  this.textField = "text",
  this.enableSearch = false,
  this.minCharsForSearch = 2,
});