RoundedButton constructor

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

Implementation

RoundedButton({
  this.text,
  this.textColor,
  this.onPressed,
  this.icon,
  this.color,
  this.borderRadius = 80,
  this.submitting = false,
});