EaseGlassContainer constructor

const EaseGlassContainer({
  1. Key? key,
  2. required Widget child,
  3. double blur = 10,
  4. TileMode tileMode = TileMode.clamp,
  5. double? height,
  6. double? width,
})

Implementation

const EaseGlassContainer(
    {Key? key,
    required this.child,
    this.blur = 10,
    this.tileMode = TileMode.clamp,
    this.height,
    this.width})
    : super(key: key);