SearchField constructor

SearchField({
  1. Key? key,
  2. String label = "",
  3. TextEditingController? controller,
  4. void onChanged(
    1. String
    )?,
})

Implementation

SearchField({
  Key? key,
  this.label = "",
  this.controller,
  this.onChanged,
}) : super(key: key);