HoverText constructor

HoverText(
  1. String text, {
  2. TextAlign? textAlign,
  3. double? fontSize,
  4. double? leftPadding,
  5. double? topPadding,
  6. double? rightPadding,
  7. double? bottomPadding,
  8. Color? color,
  9. FontWeight? fontWeight,
  10. FontStyle? fontStyle,
  11. bool? softWrap,
})

Implementation

HoverText(
  this.text, {
  this.textAlign,
  this.fontSize,
  this.leftPadding,
  this.topPadding,
  this.rightPadding,
  this.bottomPadding,
  this.color,
  this.fontWeight,
  this.fontStyle,
  this.softWrap,
});