GiantToadEditorIconButton constructor

const GiantToadEditorIconButton({
  1. required Widget icon,
  2. required VoidCallback? onPressed,
  3. String? tooltip,
  4. Color? color,
  5. double? iconSize,
  6. Key? key,
})

Implementation

const GiantToadEditorIconButton({
  required this.icon,
  required this.onPressed,
  this.tooltip,
  this.color,
  this.iconSize,
  super.key,
});