RRectOutlinedButton constructor

const RRectOutlinedButton(
  1. String text, {
  2. Key? key,
  3. double width = 64,
  4. double height = 32,
  5. double radius = 12,
  6. Color? textColor,
  7. double? fontSize,
  8. Color? backgroundColor = Colors.transparent,
  9. List<Color>? gradientColors,
  10. VoidCallback? onPressed,
})

Implementation

const RRectOutlinedButton(
  this.text, {
  Key? key,
  this.width = 64,
  this.height = 32,
  this.radius = 12,
  this.textColor,
  this.fontSize,
  this.backgroundColor = Colors.transparent,
  this.gradientColors,
  this.onPressed,
}) : super(key: key);