CustomSerachClearBar constructor

CustomSerachClearBar({
  1. Key? key,
  2. required void handlerSearch(
    1. String
    ),
  3. void onSubmitted(
    1. String
    )?,
  4. String? placeHolder,
  5. TextInputType keyboardType = TextInputType.text,
  6. Color? backgroundColor,
  7. Color? fillColor,
  8. TextInputAction? textInputAction,
})

Implementation

CustomSerachClearBar({
  Key? key,
  required this.handlerSearch,
  this.onSubmitted,
  this.placeHolder,
  this.keyboardType = TextInputType.text,
  this.backgroundColor,
  this.fillColor,
  this.textInputAction,
}) : super(key: key);