SearchInput constructor

const SearchInput({
  1. Key? key,
  2. String label = 'Search',
  3. String? hint,
  4. ShapeOptions shapeOptions = const ShapeOptions(),
  5. ValueChanged<String>? onSearch,
  6. TextEditingController? controller,
  7. CardOptions? cardOptions,
})

Implementation

const SearchInput({
  super.key,
  this.label = 'Search',
  this.hint,
  this.shapeOptions = const ShapeOptions(),
  this.onSearch,
  this.controller,
  this.cardOptions,
});