XRandomBackground constructor

const XRandomBackground({
  1. Key? key,
  2. required Widget child,
  3. double blur = 100,
  4. List<Color> backgroundColors = const [Color(0x34FFFFFF), Color(0x34FFFFFF)],
  5. List<Color> circleColors = const [Color(0xFF03A7FF), Color(0xFF006375)],
})

Implementation

const XRandomBackground({
  super.key,
  required this.child,
  this.blur = 100,
  this.backgroundColors = const [Color(0x34FFFFFF), Color(0x34FFFFFF)],
  this.circleColors = const [Color(0xFF03A7FF), Color(0xFF006375)],
});