FancyElevatedButton constructor

const FancyElevatedButton({
  1. required String text,
  2. void onPressed()?,
  3. Widget? prefix,
  4. TextStyle? textStyle,
  5. Key? key,
})

Implementation

const FancyElevatedButton({
  required this.text,
  this.onPressed,
  this.prefix,
  this.textStyle,
  super.key,
});