QuillIconButton constructor

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

Implementation

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