Bubble constructor

Bubble({
  1. bool shouldBounce = true,
  2. bool allowDragToClose = true,
  3. bool showCloseButton = false,
  4. String? customIconPath,
})

Implementation

Bubble({
  this.shouldBounce = true,
  this.allowDragToClose = true,
  this.showCloseButton = false,
  this.customIconPath,
});