Bubble constructor

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

Implementation

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