LiquidGlass constructor

const LiquidGlass({
  1. Key? key,
  2. bool enabled = true,
  3. double? width,
  4. double? height,
  5. Color color = Colors.transparent,
  6. double borderRadius = 0.0,
  7. BoxShadow? shadow,
  8. Widget? child,
})

Implementation

const LiquidGlass(
    {super.key,
    this.enabled = true,
    this.width,
    this.height,
    this.color = Colors.transparent,
    this.borderRadius = 0.0,
    this.shadow,
    super.child});