CommentSearchBar constructor

const CommentSearchBar({
  1. Key? key,
  2. required ValueNotifier<bool> showSearchBar,
  3. required void onChanged(
    1. String
    ),
  4. required TextEditingController textEditingController,
})

Implementation

const CommentSearchBar({
  Key? key,
  required this.showSearchBar,
  required this.onChanged,
  required this.textEditingController,
}) : super(key: key);