ActionButton constructor

const ActionButton({
  1. Key? key,
  2. VoidCallback? onPressed,
  3. required Widget icon,
  4. required String tooltip,
})

Implementation

const ActionButton({Key? key, this.onPressed, required this.icon, required this.tooltip}) : super(key: key);