PageBubbleViewModel constructor

PageBubbleViewModel({
  1. Widget? bubbleInner,
  2. String? iconAssetPath,
  3. Color? iconColor,
  4. bool? isHollow,
  5. double? activePercent,
  6. Color? bubbleBackgroundColor = const Color(0x88FFFFFF),
})

Implementation

PageBubbleViewModel({
  this.bubbleInner,
  this.iconAssetPath,
  this.iconColor,
  this.isHollow,
  this.activePercent,
  this.bubbleBackgroundColor = const Color(0x88FFFFFF),
}) : assert(bubbleBackgroundColor != null);