merge method

Merges this MacosTooltipThemeData with another.

Implementation

MacosTooltipThemeData merge(MacosTooltipThemeData? other) {
  if (other == null) return this;
  return copyWith(
    decoration: other.decoration,
    height: other.height,
    margin: other.margin,
    padding: other.padding,
    preferBelow: other.preferBelow,
    showDuration: other.showDuration,
    textStyle: other.textStyle,
    verticalOffset: other.verticalOffset,
    waitDuration: other.waitDuration,
  );
}