MinTooltip constructor
const
MinTooltip({
- Key? key,
- required Widget child,
- required String message,
- Duration delay = const Duration(milliseconds: 500),
- MinUiAnchorSide? side,
- Duration? duration,
- Duration? reverseDuration,
- Curve? curve,
- MinFloatingAnimation? animation,
- EdgeInsetsGeometry? padding,
- BorderRadiusGeometry? borderRadius,
- Color? backgroundColor,
- TextStyle? textStyle,
Implementation
const MinTooltip({
super.key,
required this.child,
required this.message,
this.delay = const Duration(milliseconds: 500),
this.side,
this.duration,
this.reverseDuration,
this.curve,
this.animation,
this.padding,
this.borderRadius,
this.backgroundColor,
this.textStyle,
}) : assert(message != '', 'message must not be empty');