onSearch method

void onSearch(
  1. String value
)

Implementation

void onSearch(String value) async {
  if (widget.type == UFUMultiSelectType.network && widget.onSearch != null) {
    widget.onSearch!(value);
  } else {
    setState(() {});
  }
}