SearchWidget constructor
const
SearchWidget({
- Key? key,
- required String text,
- required ValueChanged<
String> onChanged, - required String hintText,
Implementation
const SearchWidget({
Key? key,
required this.text,
required this.onChanged,
required this.hintText,
}) : super(key: key);