GradientGlassProps constructor

const GradientGlassProps({
  1. required Widget child,
  2. double blur = 12.0,
  3. String? gradientStart,
  4. String? gradientEnd,
  5. double opacity = 0.2,
  6. String? padding,
  7. String? radius,
  8. String direction = 'to bottom right',
})

Implementation

const GradientGlassProps({
  required this.child,
  this.blur = 12.0,
  this.gradientStart,
  this.gradientEnd,
  this.opacity = 0.2,
  this.padding,
  this.radius,
  this.direction = 'to bottom right',
});