RoundedButton constructor

const RoundedButton({
  1. Key? key,
  2. required String text,
  3. double? width,
  4. VoidCallback? onPressed,
  5. double? radius,
})

Implementation

const RoundedButton({
  super.key,
  required this.text,
  this.width,
  this.onPressed,
  this.radius,
});