DonutChartBackgroundStyle constructor

const DonutChartBackgroundStyle({
  1. Color color = const Color(0x33FFFFFF),
  2. Color shadowColor = const Color(0x40000000),
  3. double shadowElevation = 4,
  4. Color? innerBorderColor,
  5. Gradient? innerBorderGradient,
  6. double innerBorderStroke = 1,
  7. Color? outerBorderColor,
  8. Gradient? outerBorderGradient,
  9. double outerBorderStroke = 1,
})

Constructs an instance of DonutChartBackgroundStyle.

Implementation

const DonutChartBackgroundStyle({
  this.color = const Color(0x33FFFFFF),
  this.shadowColor = const Color(0x40000000),
  this.shadowElevation = 4,
  this.innerBorderColor,
  this.innerBorderGradient,
  this.innerBorderStroke = 1,
  this.outerBorderColor,
  this.outerBorderGradient,
  this.outerBorderStroke = 1,
});