SearchAppBar constructor

const SearchAppBar({
  1. Key? key,
  2. required Function search,
  3. Color? color,
})

Implementation

const SearchAppBar({
  Key? key,
  required this.search,
  this.color,
}) : super(key: key);