copyWith method

AppKitTooltipThemeData copyWith({
  1. double? verticalOffset,
  2. EdgeInsetsGeometry? padding,
  3. EdgeInsetsGeometry? margin,
  4. bool? preferBelow,
  5. Decoration? decoration,
  6. Duration? waitDuration,
  7. Duration? showDuration,
  8. TextStyle? textStyle,
  9. 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,
  );
}