ComButton constructor

const ComButton({
  1. Key? key,
  2. required Widget child,
  3. Gradient? gradient,
  4. VoidCallback? onPressed,
  5. ButtonStyle? style,
  6. bool? plain = false,
  7. bool disable = false,
  8. double radius = 30.0,
  9. Color? color,
  10. EdgeInsets? padding,
})

Implementation

const ComButton({
  super.key,
  required this.child,
  this.gradient,
  this.onPressed,
  this.style,
  this.plain = false,
  this.disable = false,
  this.radius = 30.0,
  this.color,
  this.padding,
});