merge method

Implementation

PushButtonThemeData merge(PushButtonThemeData? other) {
  if (other == null) return this;
  return copyWith(
    color: other.color,
    disabledColor: other.disabledColor,
    secondaryColor: other.secondaryColor,
  );
}