BackgroundConfig constructor

const BackgroundConfig({
  1. required String type,
  2. String? style,
  3. required String color,
  4. required double opacity,
  5. double? blurRadius,
})

Creates a new BackgroundConfig instance.

Implementation

const BackgroundConfig({
  required this.type,
  this.style,
  required this.color,
  required this.opacity,
  this.blurRadius,
});