BubbleStyle constructor

BubbleStyle({
  1. double? elevation,
  2. AgentBubble agent = const AgentBubble(),
  3. VisitorBubble visitor = const VisitorBubble(),
})

Implementation

BubbleStyle({
  this.elevation,
  this.agent = const AgentBubble(),
  this.visitor = const VisitorBubble(),
});