ActionButton constructor

const ActionButton(
  1. {required GlobalKey<BlinkWidgetState> shakeKeyColors,
  2. bool displayColoring = true,
  3. Color selectionColor = CupertinoColors.activeOrange,
  4. Color? background = CupertinoColors.systemFill,
  5. Key? key}
)

It's a constructor.

Implementation

const ActionButton({
  required this.shakeKeyColors,
  this.displayColoring = true,
  this.selectionColor = CupertinoColors.activeOrange,
  this.background = CupertinoColors.systemFill,
  super.key,
});