AllRoundBubble constructor

const AllRoundBubble({
  1. Key? key,
  2. required Color backgroundColor,
  3. List<Color>? highlightColors,
  4. required Widget child,
})

Implementation

const AllRoundBubble({
  super.key,
  required this.backgroundColor,
  this.highlightColors,
  required this.child,
});