SubZeroInlineSearch constructor

const SubZeroInlineSearch({
  1. Key? key,
  2. String hintText = 'Search',
  3. VoidCallback? onTap,
  4. bool expanded = true,
  5. double expandedWidth = 240,
})

Implementation

const SubZeroInlineSearch({
  super.key,
  this.hintText = 'Search',
  this.onTap,
  this.expanded = true,
  this.expandedWidth = 240,
});