SearchButton constructor

const SearchButton({
  1. required IconData icon,
  2. required QuillController controller,
  3. double iconSize = kDefaultIconSize,
  4. Color? fillColor,
  5. QuillIconTheme? iconTheme,
  6. QuillDialogTheme? dialogTheme,
  7. VoidCallback? afterButtonPressed,
  8. String? tooltip,
  9. Key? key,
})

Implementation

const SearchButton({
  required this.icon,
  required this.controller,
  this.iconSize = kDefaultIconSize,
  this.fillColor,
  this.iconTheme,
  this.dialogTheme,
  this.afterButtonPressed,
  this.tooltip,
  Key? key,
}) : super(key: key);