DecorationConfig constructor

const DecorationConfig({
  1. PaintingStyle style = PaintingStyle.fill,
  2. Color backgroundColor = const Color(0xff303133),
  3. Color? textColor,
  4. List<BoxShadow>? shadows,
  5. Radius radius = const Radius.circular(4),
  6. bool isBubble = true,
  7. BubbleMeta bubbleMeta = const BubbleMeta(),
})

Implementation

const DecorationConfig({
  this.style = PaintingStyle.fill,
  this.backgroundColor= const Color(0xff303133),
  this.textColor,
  this.shadows,
  this.radius = const Radius.circular(4),
  this.isBubble = true,
  this.bubbleMeta = const BubbleMeta(),
});