SearchField constructor

const SearchField({
  1. Key? key,
  2. TextEditingController? controller,
  3. ValueChanged<String>? onChanged,
  4. Color? borderColor,
  5. TextInputType? inputType,
})

Implementation

const SearchField({
  Key? key,
  this.controller,
  this.onChanged,
  this.borderColor,
  this.inputType,
}) : super(key: key);