GlowContainer constructor

const GlowContainer({
  1. Key? key,
  2. double? height,
  3. double? width,
  4. EdgeInsetsGeometry? padding,
  5. EdgeInsetsGeometry? margin,
  6. Color? color,
  7. AlignmentGeometry? alignment,
  8. BorderRadiusGeometry? borderRadius,
  9. BoxBorder? border,
  10. BoxShape? shape,
  11. Color? glowColor,
  12. Offset? offset,
  13. double? spreadRadius,
  14. double? blurRadius,
  15. Duration? animationDuration,
  16. Curve? animationCurve = Curves.linear,
  17. Widget? child,
})

Implementation

const GlowContainer({
  Key? key,
  this.height,
  this.width,
  this.padding,
  this.margin,
  this.color,
  this.alignment,
  this.borderRadius,
  this.border,
  this.shape,
  this.glowColor,
  this.offset,
  this.spreadRadius,
  this.blurRadius,
  this.animationDuration,
  this.animationCurve = Curves.linear,
  this.child,
}) : super(key: key);