TodayTooltip constructor

const TodayTooltip({
  1. Key? key,
  2. required String label,
  3. String? description,
  4. EdgeInsetsGeometry? padding,
  5. TodayIcon? icon,
  6. double? width,
  7. double? height,
  8. bool overlayTooltip = true,
  9. double? verticalOffset = 0,
  10. required Widget child,
  11. TodayTextStyle textStyle = TodayTextStyle.tdsFontRegular,
  12. TodayTooltipPosition position = TodayTooltipPosition.bottom,
  13. Function? onTap,
})

Implementation

const TodayTooltip({
  super.key,
  required this.label,
  this.description,
  this.padding,
  this.icon,
  this.width,
  this.height,
  this.overlayTooltip = true,
  this.verticalOffset = 0,
  required this.child,
  this.textStyle = TodayTextStyle.tdsFontRegular,
  this.position = TodayTooltipPosition.bottom,
  this.onTap,
});