TooltipBorder constructor

TooltipBorder({
  1. double radius = 6.0,
  2. double arrowWidth = 20.0,
  3. double arrowHeight = 10.0,
  4. double arrowArc = 0.0,
})

Implementation

TooltipBorder({
  this.radius = 6.0,
  this.arrowWidth = 20.0,
  this.arrowHeight = 10.0,
  this.arrowArc = 0.0,
}) : assert(arrowArc <= 1.0 && arrowArc >= 0.0);