GlassProps constructor

const GlassProps({
  1. required Widget child,
  2. double blur = 12.0,
  3. double opacity = 0.7,
  4. String? padding,
  5. String? radius,
  6. bool border = true,
})

Implementation

const GlassProps({
  required this.child,
  this.blur = 12.0,
  this.opacity = 0.7,
  this.padding,
  this.radius,
  this.border = true,
});