CardBackground constructor

const CardBackground({
  1. Key? key,
  2. required Gradient backgroundGradientColor,
  3. required String? backgroundImage,
  4. required Widget child,
  5. double? width,
  6. double? height,
  7. Glassmorphism? glassmorphismConfig,
})

Implementation

const CardBackground({
  Key? key,
  required this.backgroundGradientColor,
  required this.backgroundImage,
  required this.child,
  this.width,
  this.height,
  this.glassmorphismConfig,
}) : super(key: key);