AppBarSearchButton constructor

const AppBarSearchButton({
  1. Key? key,
  2. String toolTipLastText = 'Last input text: ',
  3. String toolTipStartText = 'Click here to start search',
  4. bool buttonHasTwoStates = true,
  5. bool changeOnlyOnSubmit = false,
  6. IconData searchIcon = Icons.search,
  7. IconData searchActiveIcon = Icons.search_off,
  8. Color searchActiveButtonColor = Colors.redAccent,
})

Implementation

const AppBarSearchButton({
  Key? key,
  this.toolTipLastText = 'Last input text: ',
  this.toolTipStartText = 'Click here to start search',
  this.buttonHasTwoStates = true,
  this.changeOnlyOnSubmit = false,
  this.searchIcon = Icons.search,
  this.searchActiveIcon = Icons.search_off,
  this.searchActiveButtonColor = Colors.redAccent,
}) : super(key: key);