QuillIconButton constructor

const QuillIconButton({
  1. required VoidCallback? onPressed,
  2. VoidCallback? afterPressed,
  3. Widget? icon,
  4. double size = 40,
  5. Color? fillColor,
  6. double hoverElevation = 1,
  7. double highlightElevation = 1,
  8. double borderRadius = 2,
  9. String? tooltip,
  10. Key? key,
})

Implementation

const QuillIconButton({
  required this.onPressed,
  this.afterPressed,
  this.icon,
  this.size = 40,
  this.fillColor,
  this.hoverElevation = 1,
  this.highlightElevation = 1,
  this.borderRadius = 2,
  this.tooltip,
  Key? key,
}) : super(key: key);