FocusButton constructor

FocusButton({
  1. required String text,
  2. void onPressed()?,
  3. Color textColor = Colors.white,
  4. Color? backgroundColor,
  5. double fontSize = 15,
})

Implementation

FocusButton({
  required this.text,
  this.onPressed,
  this.textColor = Colors.white,
  this.backgroundColor,
  this.fontSize = 15,
});