ActionButton constructor

const ActionButton({
  1. Key? key,
  2. String text = '',
  3. void onPressed()?,
  4. Widget? trailing,
  5. bool danger = false,
})

Implementation

const ActionButton({
  super.key,
  this.text = '',
  this.onPressed,
  this.trailing,
  this.danger = false,
});