CommentSearchBar constructor
const
CommentSearchBar({
- Key? key,
- required ValueNotifier<
bool> showSearchBar, - required void onChanged(),
- required TextEditingController textEditingController,
Implementation
const CommentSearchBar({
Key? key,
required this.showSearchBar,
required this.onChanged,
required this.textEditingController,
}) : super(key: key);