GoToButton constructor

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

Implementation

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