TooltipDefault constructor

const TooltipDefault({
  1. Key? key,
  2. required String message,
  3. required double height,
  4. EdgeInsetsGeometry? padding,
  5. EdgeInsetsGeometry? margin,
  6. Decoration? decoration,
  7. TextStyle? textStyle,
})

Implementation

const TooltipDefault({
  Key? key,
  required this.message,
  required this.height,
  this.padding,
  this.margin,
  this.decoration,
  this.textStyle,
}) : super(key: key);