SummaryButton constructor

const SummaryButton(
  1. String text, {
  2. Key? key,
  3. dynamic onPressed()?,
  4. bool isEnabled = true,
  5. Color? color,
  6. double fontSize = 20,
})

Implementation

const SummaryButton(this.text,{
  super.key, this.onPressed,
  this.isEnabled = true, this.color, this.fontSize = 20,
});