BorderButton constructor

BorderButton({
  1. void onPressed()?,
  2. String text = "",
  3. Color? color,
  4. Color? textColor,
  5. double fontSize = 15,
  6. bool isBold = true,
})

Implementation

BorderButton({
  this.onPressed,
  this.text = "",
  this.color,
  this.textColor,
  this.fontSize = 15,
  this.isBold = true,
});