PumaTextButton constructor

PumaTextButton({
  1. String text = "",
  2. double fontSize = 16,
  3. Color? color,
  4. Icon? icon,
  5. void onPressed()?,
})

Implementation

PumaTextButton({
  this.text = "",
  this.fontSize = 16,
  this.color,
  this.icon,
  this.onPressed,
});