RoundedButton constructor

const RoundedButton({
  1. Key? key,
  2. String? text,
  3. Color? textColor,
  4. Function? onPressed,
  5. Widget? icon,
  6. Color? color,
  7. double borderRadius = 80,
  8. bool submitting = false,
})

Implementation

const RoundedButton({
  Key? key,
  this.text,
  this.textColor,
  this.onPressed,
  this.icon,
  this.color,
  this.borderRadius = 80,
  this.submitting = false,
}) : super(key: key);