ShadowedRoundedButton constructor

const ShadowedRoundedButton({
  1. Key? key,
  2. Widget? child,
  3. Color? color,
  4. void onPressed()?,
  5. double? maxWidth,
})

Implementation

const ShadowedRoundedButton({
  super.key,
  this.child,
  this.color,
  this.onPressed,
  this.maxWidth,
});