SearchBarWidget constructor

const SearchBarWidget({
  1. Key? key,
  2. Color? backgroundColor,
  3. Color? textColor,
  4. Color? iconColor,
  5. double? height,
  6. double? radius,
  7. String? hintText,
  8. required void searchAction(
    1. String value
    ),
})

Implementation

const SearchBarWidget({
  Key? key,
  this.backgroundColor,
  this.textColor,
  this.iconColor,
  this.height,
  this.radius,
  this.hintText,
  required this.searchAction,
}) : super(key: key);