BackgroundConfig constructor

const BackgroundConfig({
  1. Color? color,
  2. DecorationImage? image,
  3. Gradient? gradient,
  4. BoxBorder? border,
  5. BorderRadius? borderRadius,
  6. List<BoxShadow>? boxShadow,
})

Implementation

const BackgroundConfig({
  this.color,
  this.image,
  this.gradient,
  this.border,
  this.borderRadius,
  this.boxShadow,
});