SearchBarWidget constructor

const SearchBarWidget({
  1. Key? key,
  2. required void searchAction(
    1. String value
    ),
  3. double width = 263,
})

Implementation

const SearchBarWidget({
  Key? key,
  required this.searchAction,
  this.width = 263,
}) : super(key: key);