GlowButton constructor

const GlowButton({
  1. Key? key,
  2. required Widget child,
  3. double? width,
  4. double? height,
  5. EdgeInsetsGeometry? padding,
  6. Color? color,
  7. Color? disableColor,
  8. Color? glowColor,
  9. Color? splashColor,
  10. BorderRadiusGeometry? borderRadius,
  11. BoxBorder? border,
  12. Offset? offset,
  13. double? spreadRadius,
  14. double? blurRadius,
  15. required VoidCallback? onPressed,
})

Implementation

const GlowButton({
  Key? key,
  required this.child,
  this.width,
  this.height,
  this.padding,
  this.color,
  this.disableColor,
  this.glowColor,
  this.splashColor,
  this.borderRadius,
  this.border,
  this.offset,
  this.spreadRadius,
  this.blurRadius,
  required this.onPressed,
}) : super(key: key);