RecupElevatedButton constructor

const RecupElevatedButton({
  1. required void onPressed()?,
  2. Widget? child,
  3. Key? key,
  4. EdgeInsetsGeometry? padding,
  5. bool radiusCircular = true,
  6. bool dense = false,
})

Implementation

const RecupElevatedButton({
  required this.onPressed,
  this.child,
  super.key,
  this.padding,
  this.radiusCircular = true,
  this.dense = false,
});