CustomActionButton constructor

const CustomActionButton({
  1. Key? key,
  2. EdgeInsetsGeometry? margin,
  3. double? width,
  4. double? height,
  5. Color? backgroundColor,
  6. Color? borderColor,
  7. Color? disabledForegroundColor,
  8. double? elevation,
  9. void onPressed()?,
  10. double? borderRadius,
  11. required Widget? child,
})

Implementation

const CustomActionButton({
  super.key,
  this.margin,
  this.width,
  this.height,
  this.backgroundColor,
  this.borderColor,
  this.disabledForegroundColor,
  this.elevation,
  this.onPressed,
  this.borderRadius,
  required this.child,
});