SearchWidget constructor

const SearchWidget({
  1. Key? key,
  2. required String text,
  3. required ValueChanged<String> onChanged,
  4. required String hintText,
})

Implementation

const SearchWidget({
  Key? key,
  required this.text,
  required this.onChanged,
  required this.hintText,
}) : super(key: key);