copyWith method
AppKitTooltipThemeData
copyWith({
- double? verticalOffset,
- EdgeInsetsGeometry? padding,
- EdgeInsetsGeometry? margin,
- bool? preferBelow,
- Decoration? decoration,
- Duration? waitDuration,
- Duration? showDuration,
- TextStyle? textStyle,
- double? minHeight,
Implementation
AppKitTooltipThemeData copyWith({
double? verticalOffset,
EdgeInsetsGeometry? padding,
EdgeInsetsGeometry? margin,
bool? preferBelow,
Decoration? decoration,
Duration? waitDuration,
Duration? showDuration,
TextStyle? textStyle,
double? minHeight,
}) {
return AppKitTooltipThemeData(
verticalOffset: verticalOffset ?? this.verticalOffset,
padding: padding ?? this.padding,
margin: margin ?? this.margin,
preferBelow: preferBelow ?? this.preferBelow,
decoration: decoration ?? this.decoration,
waitDuration: waitDuration ?? this.waitDuration,
showDuration: showDuration ?? this.showDuration,
textStyle: textStyle ?? this.textStyle,
minHeight: minHeight ?? this.minHeight,
);
}