merge method

Merges this MacosScrollbarThemeData with another.

Implementation

MacosScrollbarThemeData merge(MacosScrollbarThemeData? other) {
  if (other == null) return this;
  return copyWith(
    thickness: other.thickness,
    thumbVisibility: other.thumbVisibility,
    radius: other.radius,
    thumbColor: other.thumbColor,
  );
}