Glass constructor

const Glass({
  1. required Component child,
  2. double blur = 12.0,
  3. double opacity = 0.7,
  4. EdgeInsets? padding,
  5. double? radius,
  6. bool border = true,
  7. Key? key,
})

Implementation

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