ActionButton constructor

const ActionButton({
  1. required Widget icon,
  2. Key? key,
  3. VoidCallback? onPressed,
  4. ShapeBorder shapeBorder = const CircleBorder(),
  5. double elevation = 4,
  6. Color? backgroundColor,
})

Implementation

const ActionButton({
  required this.icon,
  super.key,
  this.onPressed,
  this.shapeBorder = const CircleBorder(),
  this.elevation = 4,
  this.backgroundColor,
});