ArcherButton constructor

ArcherButton({
  1. Key? key,
  2. String text = "",
  3. void onPressed()?,
  4. Color? color,
  5. Color? textColor,
  6. bool? disabled,
  7. Widget? leading,
  8. Widget? trailing,
  9. PumaDensity? density,
})

Implementation

ArcherButton({
  Key? key,
  this.text = "",
  this.onPressed,
  this.color,
  this.textColor,
  this.disabled,
  this.leading,
  this.trailing,
  this.density,
}) : super(key: key);