AwsPainterBridge constructor

AwsPainterBridge({
  1. required double bubbleRadius,
  2. required double maxBubbleRadius,
  3. Color? bubbleColor = CupertinoColors.activeBlue,
})

Implementation

AwsPainterBridge({
  required this.bubbleRadius,
  required this.maxBubbleRadius,
  this.bubbleColor = CupertinoColors.activeBlue,
})  : endColor = Color.lerp(bubbleColor, CupertinoColors.activeBlue, 0.8),
      super();