GlassCircle constructor

GlassCircle({
  1. required Widget child,
  2. double? colorOpacity,
  3. BoxBorder? border,
  4. double? radius,
  5. double? blurStrengthX,
  6. double? blurStrengthY,
  7. Color color = Colors.transparent,
})

Implementation

GlassCircle({
  required this.child,
  this.colorOpacity,
  this.border,
  this.radius,
  this.blurStrengthX,
  this.blurStrengthY,
  this.color = Colors.transparent,
});