BlurredSectionContainer constructor

const BlurredSectionContainer({
  1. Key? key,
  2. Widget? titleView,
  3. required List<Widget> children,
  4. double? width,
  5. double? height,
  6. double borderRadius = 12.0,
})

Implementation

const BlurredSectionContainer(
    {super.key,
    this.titleView,
    required this.children,
    this.width,
    this.height,
    this.borderRadius = 12.0});