DefaultToolTip constructor

const DefaultToolTip({
  1. Key? key,
  2. EdgeInsetsGeometry? padding,
  3. String? text,
  4. FontWeight? fontWeight,
  5. double? arrowWidth = 8.0,
  6. double? arrowHeight = 5.0,
  7. double? borderRadius = 10.0,
  8. ArrowDirection? direction = ArrowDirection.bottom,
  9. double? positionRatio = 0.5,
})

Implementation

const DefaultToolTip({
  Key? key,
  this.padding,
  this.text,
  this.fontWeight,
  this.arrowWidth = 8.0,
  this.arrowHeight = 5.0,
  this.borderRadius = 10.0,
  this.direction = ArrowDirection.bottom,
  this.positionRatio = 0.5,
}) : super(key: key);