BubbleColor constructor

const BubbleColor({
  1. required Color dotFirstColor,
  2. required Color dotSecondColor,
  3. Color? dotThirdColor,
  4. Color? dotLastColor,
})

Implementation

const BubbleColor(
    {required this.dotFirstColor,
    required this.dotSecondColor,
    this.dotThirdColor,
    this.dotLastColor});